Method Summary |
|
protected void | _addComponent(Object key, Component component, Environment env) Adds a child component to this component with the key and initilizes it with the
specified Environment env. |
protected void | _addComponent(Object key, Component component, Scope scope, Environment env) Adds a child component to this component with the key and initilizes it with the
specified Environment env. |
protected void | _checkCall() Checks if this component was initialized. |
protected void | _disableComponent(Object key) Disables the child component with the specified key. |
protected void | _enableComponent(Object key) Enables a disabled child component with the specified key. |
protected synchronized void | _endCall() Decrements the call count. |
protected synchronized void | _endWaitingCall() Decrements internal callcount counter. |
protected Map | _getChildren() Returns the children of this component. |
public Component.Interface | _getComponent() |
protected Map | _getDisabledChildren() Returns the children of this component. |
protected void | _propagate(Message message) |
protected void | _relocateComponent(Composite parent, Environment newEnv, Object keyFrom, Object keyTo) Relocates parent's child with keyFrom to this BaseComponent with a new key keyTo. |
protected void | _removeComponent(Object key) Removes the childcomponent with the specified key from the children and calls destroy on it. |
protected synchronized void | _setEnvironment(Environment env) Sets the environment of this BaseComponent to environment. |
protected void | _setScope(Scope scope) Sets the environment of this BaseComponent to environment. |
protected synchronized void | _startCall() Checks if a call is valid (component is in the required state), increments the call count. |
protected synchronized void | _startWaitingCall() Used for starting a call that is a re-entrant call. |
protected void | _strictCheckCall() Checks if this component is currently alive. |
protected synchronized void | _strictStartCall() |
protected synchronized void | _waitNoCall() Waits until no call is made to the component. |
protected void | destroy() Destroy callback. |
protected void | disable() |
protected void | enable() |
public Environment | getEnvironment() Returns the Environment of this BaseComponent. |
public Scope | getScope() |
protected void | handleException(Exception e) |
protected void | init() Init callback. |
public boolean | isAlive() |
public boolean | isDead() |
public boolean | isInitialized() Returns true, if the BaseComponent has been initialized. |
protected void | propagate(Message message) |