| org.swingml.event.ISwingMLEvent
All known Subclasses: org.swingml.event.SwingMLEvent,
ISwingMLEvent | public interface ISwingMLEvent (Code) | | author: CrossLogic |
Method Summary | |
public Object | execute(Object anObject) This method contains the main code the event will perform. | public void | postExecute(Object anObject) This method will be called after the execute method completes. | public Object | preExecute() This method will be called initially. |
execute | public Object execute(Object anObject)(Code) | | This method contains the main code the event will perform.
|
postExecute | public void postExecute(Object anObject)(Code) | | This method will be called after the execute method completes. The retun value from the execute method will be passed into this method as an Object.
Parameters: anObject - |
preExecute | public Object preExecute()(Code) | | This method will be called initially. The return value from this method will be passed into the execute() method call.
Parameters: anObject - |
|
|