Interface IAttachable
Defines interface with methods which allows to attach/detach this instance to IServiceContainer
Namespace:
Assembly: .dll
Syntax
public interface IAttachable
Methods
attachTo(IServiceContainer services)
Attaches this instance to the instance of IServiceContainer
Declaration
public abstract void attachTo(IServiceContainer services)
Parameters
| Type | Name | Description |
|---|---|---|
| IServiceContainer | services | The target IServiceContainer instance |
detach()
Detaches this instance from currently attached IServiceContainer instance
Declaration
public abstract void detach()
isAttached()
Gets whether this instance is attached on not
Declaration
public abstract boolean isAttached()
Returns
| Type | Description |
|---|---|
| boolean | True if this instance is attached |