| com.javelin.swinglets.plaf.SComponentUI
All known Subclasses: com.javelin.swinglets.plaf.wml.WMLComponentUI, com.javelin.swinglets.plaf.html.HTMLComponentUI, com.javelin.swinglets.plaf.jfc.JFCComponentUI,
SComponentUI | public interface SComponentUI (Code) | | SComponentSI is a SComponent user interface.
author: Robin Sharp |
Method Summary | |
public void | addListener(EventListener listener) Adds the specified listener to receive component events from
the SComponent. | public void | addListeners(SComponent component) Adds the listeners to receive component events from
the SComponent at initialisation. | public Class | getLookAndFeel() Get the look and feel class for this UI. | public void | removeListener(EventListener listener) Removes the specified listener so that it no longer
receives events from the SComponent. | public void | removeListeners(SComponent component) Removes all the listeners that received component events from
the SComponent at initialisation. | public void | update(Object out, SComponent c) Render the UI on the output, in the Body. | public void | update(SComponent c, int id, int index) | public void | update(SComponent c, int id, Object constraint) Tell the underlying UI that the container has been changed, when
added to a layout manager. | public void | updateComponentFooter(Object out, SComponent c) Update the component footer. | public void | updateComponentHeader(Object out, SComponent c) Update the component header. | public void | updateEvent(Object out, SComponent c) Render the event handling script on the output, in the Body. | public void | updateHeader(Object out, SComponent c) Render the UI on the output, in the Header. | public void | updateScript(Object out, SComponent c) Render the script code for a text the Header. |
COMPONENT_ADDED | final public static int COMPONENT_ADDED(Code) | | |
COMPONENT_REMOVED | final public static int COMPONENT_REMOVED(Code) | | |
addListener | public void addListener(EventListener listener)(Code) | | Adds the specified listener to receive component events from
the SComponent.
|
getLookAndFeel | public Class getLookAndFeel()(Code) | | Get the look and feel class for this UI.
|
removeListener | public void removeListener(EventListener listener)(Code) | | Removes the specified listener so that it no longer
receives events from the SComponent.
|
removeListeners | public void removeListeners(SComponent component)(Code) | | Removes all the listeners that received component events from
the SComponent at initialisation.
|
update | public void update(SComponent c, int id, int index)(Code) | | Tell the underlying UI that the container has been changed
|
update | public void update(SComponent c, int id, Object constraint)(Code) | | Tell the underlying UI that the container has been changed, when
added to a layout manager.
|
updateComponentFooter | public void updateComponentFooter(Object out, SComponent c)(Code) | | Update the component footer.
|
updateComponentHeader | public void updateComponentHeader(Object out, SComponent c)(Code) | | Update the component header.
|
updateEvent | public void updateEvent(Object out, SComponent c)(Code) | | Render the event handling script on the output, in the Body.
|
updateHeader | public void updateHeader(Object out, SComponent c)(Code) | | Render the UI on the output, in the Header.
|
updateScript | public void updateScript(Object out, SComponent c)(Code) | | Render the script code for a text the Header.
|
|
|