interfaces.IFunctionRenameable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsyntaxtree Show documentation
Show all versions of jsyntaxtree Show documentation
Syntax tree representation of the JASS language
The newest version!
package interfaces;
import nodes.AbstractNode;
/**
* Declates that this node can rename functions/function uses
*/
public interface IFunctionRenameable {
/**
* Renames a function and uses to a new name
*
* @param oldFunctionName Existing function name
* @param newFunctionName Desired function name
*/
void renameFunction(String oldFunctionName, String newFunctionName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy