gr.bluevibe.fire.util
Interface ComponentListener

All Known Implementing Classes:
Panel

public interface ComponentListener

A Component thats acts as a panel should implement this interface to intercept events fired by its components.

Author:
padeler
See Also:
Panel

Method Summary
 void internalValidateEvent(Component c)
          A components that requires (Validation) redrawing can request it from its container using this method.
 void setContainerCurrent()
          A component can request that is container will be made current, using this method.
 void setCurrent(javax.microedition.lcdui.Displayable c)
          A component can request the display of a Displayable from the container using this method.
 

Method Detail

internalValidateEvent

public void internalValidateEvent(Component c)
A components that requires (Validation) redrawing can request it from its container using this method.

Parameters:
c - the issuer of the Validate event

setCurrent

public void setCurrent(javax.microedition.lcdui.Displayable c)
A component can request the display of a Displayable from the container using this method.

Parameters:
c - the Displayable to be set current.

setContainerCurrent

public void setContainerCurrent()
A component can request that is container will be made current, using this method.