Method Summary |
|
abstract public void | actionPerformed(String actionId, String parameter) A user has clicked on a link that was generated by this control. |
abstract public String | createActionURL(String action, String acpara) Create an URL with the specified action and parameter. |
abstract public void | destroy() This method is invoked when the control is removed from the container. |
abstract public IControlContainer | getContainer() Returns the container where this control is nested in. |
abstract public java.lang.String | getControlID() Returns the ID of the control. |
abstract public Field | getField(String name) Returns the field with the specified name. |
abstract public String | getName() Returns the name of the Control. |
abstract public String | getRendererId() Returns the renderer implementation. |
abstract public SessionContext | getSessionContext() Returns the SessionContext object, this control lives in. |
abstract public String | getTemplateName() Returns the name of the template used to render this control. |
abstract public boolean | isRequireRedraw() Returns true if the control has been changed since the last rendering
and must be rendered again to reflect the last changes. |
abstract public boolean | isVisible() Returns true if the control should be rendered. |
abstract public void | removeField(String name) Removes the field with the given name. |
abstract public void | removeField(Field field) Removes the field from the fieldlist. |
abstract public void | setRendererId(String rendererId) Sets the renderer used to render this control into HTML code. |
abstract public void | setRequireRedraw(boolean requireRedraw) Set to true if the control needs to be rendered again to reflect the changes
of the control since it was last rendered. |
abstract public void | setTemplateName(String templateName) Sets the name of the template used to render this control. |
abstract public void | setVisible(boolean newVisible) Set the visibility flag of this control. |