- Type Parameters:
H- The type of the handle.
- All Known Subinterfaces:
DecomposableHandle.DecomposeAutomatonHandle<H>
public interface DecomposableHandle<H>
The
DecomposableHandle interface defines those methods related to the
handle based decompose life-cycle.
The handle reference requires the Decomposable interface to be
implemented.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceTheDecomposableHandle.DecomposeAutomatonHandleinterface defines those methods related to the handle based decompose life-cycle. -
Method Summary
Modifier and TypeMethodDescriptionvoidDecomposes the component identified by the given handle.booleanhasDecomposable(H aHandle) Determines whether the handle reference is decomposable by implementing theDecomposableinterface.
-
Method Details
-
hasDecomposable
Determines whether the handle reference is decomposable by implementing theDecomposableinterface.- 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.
-
decompose
Decomposes the component identified by the given handle.- Parameters:
aHandle- The handle identifying the component.- Throws:
UnknownHandleRuntimeException- in case the given handle is unknown.UnsupportedHandleOperationRuntimeException- in case the reference of the handle does not support the requested operation.
-