Interface DecomposableHandle<H>

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.

  • Method Details

    • hasDecomposable

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

      void decompose(H aHandle)
      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.