| pnuts.lang.AutoloadHook
AutoloadHook | public interface AutoloadHook (Code) | | This interface defines how to find the value of a undefined variable.
Instances of this interface can be registered with
Package.autoload(String name, AutoloadHook loadHook, Context context).
version: 1.1 |
Method Summary | |
public void | load(String name, Context context) When a registered name is first accessed and the name has not been
defined, this method of a corresponding AutoloadHook object is called. |
load | public void load(String name, Context context)(Code) | | When a registered name is first accessed and the name has not been
defined, this method of a corresponding AutoloadHook object is called.
Parameters: name - the name to be defined by autoloading Parameters: context - the context with which the name is accessed. |
|
|