|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectbibliothek.gui.dock.station.layer.DefaultDropLayer
public class DefaultDropLayer
This DockStationDropLayer represents the base area of a DockStation, the area
with priority LayerPriority.BASE and whose Component is the component is the result of
Dockable.getComponent() (assuming the station is also a dockable).
| Constructor Summary | |
|---|---|
DefaultDropLayer(DockStation station)
Creates a new layer. |
|
| Method Summary | |
|---|---|
boolean |
canCompare(DockStationDropLayer layer)
Tells whether this level contains code to tell whether it has a higher or lower priority as level. |
int |
compare(DockStationDropLayer layer)
Compares this level with level. |
boolean |
contains(int x,
int y)
Tells whether this level contains the point x/y, which is the position
of the mouse on the screen. |
Component |
getComponent()
Gets a Component which is associated with this level. |
LayerPriority |
getPriority()
Gets the basic priority of this level. |
DockStation |
getStation()
Gets the DockStation which created this level. |
DockStationDropLayer |
modify(DockStationDropLayer child)
This method is called for any DockStationDropLayer whose station
is a child to the station of this level. |
void |
setPriority(LayerPriority priority)
Sets a new priority for this level. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public DefaultDropLayer(DockStation station)
station - the station which owns this layer| Method Detail |
|---|
public boolean canCompare(DockStationDropLayer layer)
DockStationDropLayerlevel. For most implementations the result of this method should be false.true, then the ordering defined by the custom algorithm supercedes
any other conditions.
canCompare in interface DockStationDropLayerlayer - some other level to check
true if this DockStationDropLayer contains code to compare level with
thispublic int compare(DockStationDropLayer layer)
DockStationDropLayerlevel. This method is only called if DockStationDropLayer.canCompare(DockStationDropLayer)
returned true for level. This method works like Comparable.compareTo(Object).
compare in interface DockStationDropLayerlayer - another level to compare
level.
public boolean contains(int x,
int y)
DockStationDropLayerlevel contains the point x/y, which is the position
of the mouse on the screen.
contains in interface DockStationDropLayerx - the x-coordinate of the mouse on the screeny - the y-coordinate of the mouse on the screen
true if this level contains x/y, false
otherwisepublic Component getComponent()
DockStationDropLayerComponent which is associated with this level. The Component can be used to order
levels because Components can overlap each other. This is an optional method, a result of
null is perfectly valid.
getComponent in interface DockStationDropLayernullpublic LayerPriority getPriority()
DockStationDropLayer
getPriority in interface DockStationDropLayernullpublic void setPriority(LayerPriority priority)
DockStationDropLayer
setPriority in interface DockStationDropLayerpriority - the new priority, must not be nullpublic DockStation getStation()
DockStationDropLayerDockStation which created this level.
getStation in interface DockStationDropLayerpublic DockStationDropLayer modify(DockStationDropLayer child)
DockStationDropLayerDockStationDropLayer whose station
is a child to the station of this level. This method may modify the level, e.g. increase or
decrease its priority. This method is called before this level itself gets modified by its
parents. This method is called independent of whether DockStationDropLayer.contains(int, int) returns true
or false.
modify in interface DockStationDropLayerchild - the child to modify, this method may either directly modify child, create a wrapper or
a copy of child
child or a new DockStationDropLayer replacing child, not null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||