Package org.refcodes.component
Interface OpenableHandle<H>
-
- Type Parameters:
H- The type of the handle.
- All Known Subinterfaces:
LinkComponentHandle<H>,LinkComponentHandle.DeviceAutomatonHandle<H>,OpenableHandle.OpenAutomatonHandle<H>
public interface OpenableHandle<H>TheOpenableHandleinterface defines those methods related to the handle based open/connect life-cycle.The handle reference requires the
Openableinterface to be implemented.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceOpenableHandle.OpenAutomatonHandle<H>TheOpenableHandle.OpenAutomatonHandleinterface defines those methods related to the handle based open/connect life-cycle.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description booleanhasOpenable(H aHandle)Determines whether the handle reference is openable by implementing theOpenableinterface.voidopen(H aHandle)Open/connect the component identified by the given handle.default voidopenUnchecked(H aHandle)Opens the component by callingopen(Object)without you to require catching anOpenException.
-
-
-
Method Detail
-
hasOpenable
boolean hasOpenable(H aHandle) throws UnknownHandleRuntimeException
Determines whether the handle reference is openable by implementing theOpenableinterface.- Parameters:
aHandle- The handle to test whether the reference provides the according functionality.- Returns:
- True in case the reference provides the according functionality.
- Throws:
UnknownHandleRuntimeException- in case the handle is unknown.
-
open
void open(H aHandle) throws OpenException, UnknownHandleRuntimeException, UnsupportedHandleOperationRuntimeException, IllegalHandleStateChangeRuntimeException
Open/connect the component identified by the given handle.- Parameters:
aHandle- The handle identifying the component.- Throws:
OpenException- in case opening/connecting fails.UnknownHandleRuntimeException- in case the given handle is unknown.UnsupportedHandleOperationRuntimeException- in case the reference of the handle does not support the requested operation.IllegalHandleStateChangeRuntimeException- Thrown in case a state change is not possible due to the current state the referenced component is in.
-
openUnchecked
default void openUnchecked(H aHandle)
Opens the component by callingopen(Object)without you to require catching anOpenException.- Parameters:
aHandle- The handle identifying the component.- Throws:
org.refcodes.exception.HiddenException- encapsulates the cause and is thrown upon encountering aOpenExceptionexception
-
-