H
- The type of the handle.public interface DisposableHandle<H>
DisposableHandle
interface defines those methods related to the
handle based dispose life-cycle.
The handle reference requires the Disposable.DisposeSupport
interface to be
implemented.
Modifier and Type | Interface and Description |
---|---|
static interface |
DisposableHandle.DisposeAutomatonHandle<H>
The
DisposableHandle.DisposeAutomatonHandle interface defines those methods
related to the handle based dispose life-cycle. |
Modifier and Type | Method and Description |
---|---|
void |
dispose(H aHandle)
Disposes the component identified by the given handle.
|
boolean |
hasDisposable(H aHandle)
Determines whether the handle reference is disposable by implementing the
Disposable.DisposeSupport interface. |
boolean hasDisposable(H aHandle) throws UnknownHandleRuntimeException
Disposable.DisposeSupport
interface.aHandle
- The handle to test whether the reference provides the
according functionality.UnknownHandleRuntimeException
- in case the handle is unknown.void dispose(H aHandle) throws UnknownHandleRuntimeException, UnsupportedHandleOperationRuntimeException, IllegaleHandleStateChangeRuntimeException
aHandle
- The handle identifying the component.UnsupportedHandleOperationRuntimeException
- in case the reference
of the handle does not support the requested operation.UnknownHandleRuntimeException
- in case the given handle is
unknown.IllegaleHandleStateChangeRuntimeException
- Thrown in case a state
change is not possible due to the current state the referenced
component is in.Copyright © 2015. All rights reserved.