Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package ls.script; /** * An interface to an object that can be accessed and manipulated by script * * @author Lior */ public interface Scriptable { /** * Get the name this instance will be bound to when transferred to the script * engine * @return The name this instance will be bound to */ String getBindingName(); }