Interface PALplate.interactors.Widget
All Packages Class Hierarchy This Package Previous Next Index
Interface PALplate.interactors.Widget
- public interface Widget
- extends Object
- extends interactor
All mud objects which wish to be displayed as part of a GUI interface
implement this. It provides methods for initialization before and after
the object is added to the interface.
-
post_add_child(Object)
- This function is called right after the object is added to the interface.
-
pre_add_child()
- This function is called right before the object is added to the interface.
pre_add_child
public abstract void pre_add_child()
- This function is called right before the object is added to the interface.
At this point, if the object is a MudObject, init should have already
been called.
- See Also:
- init
post_add_child
public abstract void post_add_child(Object parent)
- This function is called right after the object is added to the interface.
- Parameters:
- parent - object which created the object.
All Packages Class Hierarchy This Package Previous Next Index