| java.lang.Object org.netbeans.lib.awtextra.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 |
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 |
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 |
|
|