| org.swingml.event.InvokableEventHandler
Method Summary | |
public void | destroy() This method is called immediately after the completion of the
invoke() method. | public void | initialize(Component aComponent, Object[] parameters) This method provides an initialization routine for an
InvokableEvent implementation. | public void | invoke() This method provides the actual action performed by the
InvokableEvent implementation. |
destroy | public void destroy()(Code) | | This method is called immediately after the completion of the
invoke() method. This method should be used to release any
allocated resource (database, files, etc) allocated during
the initialize() or invoke() methods.
|
initialize | public void initialize(Component aComponent, Object[] parameters)(Code) | | This method provides an initialization routine for an
InvokableEvent implementation. This method is called upon
every invocation of the event, regardless of whether or
not the implementation is retained in memory.
Parameters: component - A reference the component specified in the <EXTERNAL-ACTION> tag's COMPONENT attribute. Parameters: params - An array of ActionParamModel objects. |
invoke | public void invoke()(Code) | | This method provides the actual action performed by the
InvokableEvent implementation. Called immediately after the
initialize() method.
|
|
|