Interface | Description |
---|---|
DockAcceptance |
Used by a
DockController to decide globally which
Dockable can become child of which DockStation .The acceptance can be set through the method DockController.addAcceptance(DockAcceptance) |
Class | Description |
---|---|
AbstractAcceptance |
A DockAcceptance that returns
true for all cases. |
CombinatoryAcceptance |
A DockAcceptance that is a combination out of two other acceptances.
|
MultiDockAcceptance |
A
DockAcceptance which consists of other acceptances, and returns
only true if all children of this acceptance return true . |
Enum | Description |
---|---|
CombinatoryAcceptance.Combination |
DockAcceptance
s.
The classes in this package can be used to create new DockAcceptance
s
by subclassing them, or to combine several DockAcceptance
s using
some logical rules.