Package org.refcodes.component
Interface InitializedHandle<H>
-
- Type Parameters:
H- The type of the handle.
- All Known Subinterfaces:
CompositeComponentHandle<H,REF>,ConfigurableHandle.ConfigureAutomatonHandle<H,CTX>,ConfigurableLifeCycleComponentHandle.ConfigurableLifeCycleAutomatonHandle<H,CTX>,InitializableHandle.InitializeAutomatonHandle<H>,LifeCycleComponentHandle.LifeCycleAutomatonHandle<H>
public interface InitializedHandle<H>Provides access to the initialized handle reference.The handle reference requires the
InitializedAccessorinterface to be implemented.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisInitzialized(H aHandle)Determines whether the component identified by the given handle is opened.
-
-
-
Method Detail
-
isInitzialized
boolean isInitzialized(H aHandle) throws UnknownHandleRuntimeException, UnsupportedHandleOperationRuntimeException
Determines whether the component identified by the given handle is opened.- Parameters:
aHandle- The handle identifying the component.- Returns:
- True in case of being opened, else false.
- Throws:
UnknownHandleRuntimeException- in case the given handle is unknown.UnsupportedHandleOperationRuntimeException- in case the reference of the handle does not support the requested operation.
-
-