All Downloads are FREE. Search and download functionalities are using the official Maven repository.

interfaces.IFunctionRenameable Maven / Gradle / Ivy

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