| java.lang.Object org.swingml.event.EventUtil
All known Subclasses: org.swingml.event.ControllerActionEventHandler,
Method Summary | |
protected Map | buildActionParametersMap(Object[] aParams) This method expects the objects in the params argument to be instances of
the ActionParamModel object.
Parameters: params - A reference to an array of Object instances. | public Component | getComponent(Component aComponent, String aComponentName) This function returns a reference to the component specified by the
componentName argument. | protected SwingMLRenderer | getRenderer(Component aComponent) This method returns a reference to the Renderer instance within which the
Component referenced by the component argument resides.
Parameters: component - A refernce to the component specified by the COMPONENTattribute of the <EXTERNAL-ACTION> tag. |
buildActionParametersMap | protected Map buildActionParametersMap(Object[] aParams)(Code) | | This method expects the objects in the params argument to be instances of
the ActionParamModel object.
Parameters: params - A reference to an array of Object instances. A valid reference to a Map object. null if an error occurred. See Also: org.swingml.model.ActionParamModel |
getComponent | public Component getComponent(Component aComponent, String aComponentName)(Code) | | This function returns a reference to the component specified by the
componentName argument. The component argument does not need to contain
the requested object, it only needs to be in the same document as the
component argument.
Parameters: component - A reference to the Component instance specified in theCOMPONENT attribute of the <EXTERNAL-ACTION> tag. Parameters: componentName - A String representing the name of the component to return. A reference to the named component, or null if the name does notexist within the document hierarchy. |
getRenderer | protected SwingMLRenderer getRenderer(Component aComponent)(Code) | | This method returns a reference to the Renderer instance within which the
Component referenced by the component argument resides.
Parameters: component - A refernce to the component specified by the COMPONENTattribute of the <EXTERNAL-ACTION> tag. A reference to the SwingMLRender within which the InvokableEventinstance resides. |
|
|