public interface ComponentManager
| Modifier and Type | Method and Description |
|---|---|
NodeComponentImpl |
getComponent(NodeComponentKey inKey)
Obtain the component registered with the provided key.
|
void |
registerComponent(NodeComponentKey inKey,
NodeComponentImpl inComponent)
Register a component with this component manager.
|
void |
unregisterComponent(NodeComponentImpl inComponent)
Unregister a previously registered component.
|
void registerComponent(NodeComponentKey inKey, NodeComponentImpl inComponent) throws RegistrationException
inKey - - The key used to retrieve this component.inComponent - - The component being registered.RegistrationExceptionNodeComponentImpl getComponent(NodeComponentKey inKey) throws ComponentException
inKey - - The key associated with a registered component.ComponentExceptionvoid unregisterComponent(NodeComponentImpl inComponent)
inComponent - - The component to unregister.