| java.lang.Object org.ozoneDB.core.monitor.AbsoluteConstraints
AbsoluteConstraints | public class AbsoluteConstraints implements java.io.Serializable(Code) | | An object that encapsulates position and (optionally) size for
Absolute positioning of components.
See Also: AbsoluteLayout version: 1.01, Aug 19, 1998 ($Revision: 1.2 $) author: Ian Formanek (modified softwarebuero m&b) |
FIXED | final static int FIXED(Code) | | Groesse und position sind fest
|
GUI | static int GUI(Code) | | aktuelle GUI-einstellung
|
MOTIF | final static int MOTIF(Code) | | Werte fuer GUI-einstellung
|
MOVE_ABS | final static int MOVE_ABS(Code) | | |
MOVE_PROP | final static int MOVE_PROP(Code) | | Position wird proportional/fest der groesse des containers angepasst
|
RESIZE_ABS | final static int RESIZE_ABS(Code) | | |
RESIZE_PROP | final static int RESIZE_PROP(Code) | | Groesse wird proportional/fest der groesse des containers angepasst
|
X2_ABS | final static int X2_ABS(Code) | | |
X2_PROP | final static int X2_PROP(Code) | | |
X_ABS | final static int X_ABS(Code) | | |
X_PROP | final static int X_PROP(Code) | | |
Y2_ABS | final static int Y2_ABS(Code) | | |
Y2_PROP | final static int Y2_PROP(Code) | | |
Y_ABS | final static int Y_ABS(Code) | | |
Y_PROP | final static int Y_PROP(Code) | | |
height | public int height(Code) | | The height of the component or -1 if the component's preferred height should be used
|
serialVersionUID | final static long serialVersionUID(Code) | | generated Serialized Version UID
|
width | public int width(Code) | | The width of the component or -1 if the component's preferred width should be used
|
x | public int x(Code) | | The X position of the component
|
y | public int y(Code) | | The Y position of the component
|
AbsoluteConstraints | public AbsoluteConstraints(Point pos)(Code) | | Creates a new AbsoluteConstraints for specified position.
Parameters: pos - The position to be represented by this AbsoluteConstraints |
AbsoluteConstraints | public AbsoluteConstraints(int x, int y)(Code) | | Creates a new AbsoluteConstraints for specified position.
Parameters: x - The X position to be represented by this AbsoluteConstraints Parameters: y - The Y position to be represented by this AbsoluteConstraints |
AbsoluteConstraints | public AbsoluteConstraints(Point pos, Dimension size)(Code) | | Creates a new AbsoluteConstraints for specified position and size.
Parameters: pos - The position to be represented by this AbsoluteConstraints Parameters: size - The size to be represented by this AbsoluteConstraints or nullif the component's preferred size should be used |
AbsoluteConstraints | public AbsoluteConstraints(int x, int y, int width, int height)(Code) | | Creates a new AbsoluteConstraints for specified position and size.
Parameters: x - The X position to be represented by this AbsoluteConstraints Parameters: y - The Y position to be represented by this AbsoluteConstraints Parameters: width - The width to be represented by this AbsoluteConstraints or -1 if thecomponent's preferred width should be used Parameters: height - The height to be represented by this AbsoluteConstraints or -1 if thecomponent's preferred height should be used |
AbsoluteConstraints | public AbsoluteConstraints(int x, int y, int width, int height, int policy)(Code) | | |
getHeight | public int getHeight()(Code) | | The height represented by this AbsoluteConstraints or -1 if thecomponent's preferred height should be used |
getWidth | public int getWidth()(Code) | | The width represented by this AbsoluteConstraints or -1 if thecomponent's preferred width should be used |
getX | public int getX()(Code) | | The X position represented by this AbsoluteConstraints |
getY | public int getY()(Code) | | The Y position represented by this AbsoluteConstraints |
|
|