Interface DecomposableHandle.DecomposeAutomatonHandle<H>

Type Parameters:
H - The type of the handle.
All Superinterfaces:
DecomposableHandle<H>
Enclosing interface:
DecomposableHandle<H>

public static interface DecomposableHandle.DecomposeAutomatonHandle<H> extends DecomposableHandle<H>
The DecomposableHandle.DecomposeAutomatonHandle interface defines those methods related to the handle based decompose life-cycle. The handle reference requires the Decomposable.DecomposeAutomaton interface to be implemented.
  • Method Details

    • hasDecomposeAutomaton

      boolean hasDecomposeAutomaton(H aHandle)
      Determines whether the handle reference is decomposable by implementing the Decomposable.DecomposeAutomaton interface.
      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.
    • isDecomposable

      boolean isDecomposable(H aHandle)
      Determines whether the component identified by the given handle may get decomposed.
      Parameters:
      aHandle - The handle identifying the component.
      Returns:
      True if decompose(Object) is possible.
      Throws:
      UnknownHandleRuntimeException - in case the given handle is unknown.
      UnsupportedHandleOperationRuntimeException - in case the reference of the handle does not support the requested operation.
    • decompose

      void decompose(H aHandle)
      Decomposes the component identified by the given handle.
      Specified by:
      decompose in interface DecomposableHandle<H>
      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.