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.Disposedable 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.Disposedable interface. |
boolean hasDisposable(H aHandle) throws UnknownHandleRuntimeException
Disposable.Disposedable 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.UnknownHandleRuntimeException - in case the given handle is
unknown.UnsupportedHandleOperationRuntimeException - in case the reference
of the handle does not support the requested operation.IllegaleHandleStateChangeRuntimeException - Thrown in case a state
change is not possible due to the current state the referenced
component is in.Copyright © 2018. All rights reserved.