com.sun.rave.designtime
Interface Constants.ResizeConstraints

Enclosing interface:
Constants

public static interface Constants.ResizeConstraints

The component may or may not be resizable on the design surface. This bitmask (stored in the Constants.BeanDescriptor.RESIZE_CONSTRAINTS attribute on the BeanDescriptor) defines how the selection 'nibs' will appear in a visual designer.

See Also:
Constants.BeanDescriptor.RESIZE_CONSTRAINTS

Field Summary
static int ANY
          The component can be resized in any way - the top, bottom, left, and right edges can be manipulated to resize
static int BOTTOM
          The bottom edge of the component can be manipulated to resize
static int HORIZONTAL
          The component can be resized horizontally - the left and right edges can be manipulated to resize
static int LEFT
          The left edge of the component can be manipulated to resize
static int NONE
          The component can not be resized
static int RIGHT
          The right edge of the component can be manipulated to resize
static int TOP
          The top edge of the component can be manipulated to resize
static int VERTICAL
          The component can be resized vertically - the top and bottom edges can be manipulated to resize
 

Field Detail

ANY


public static final int ANY
The component can be resized in any way - the top, bottom, left, and right edges can be manipulated to resize

See Also:
Constant Field Values

BOTTOM


public static final int BOTTOM
The bottom edge of the component can be manipulated to resize

See Also:
Constant Field Values

HORIZONTAL


public static final int HORIZONTAL
The component can be resized horizontally - the left and right edges can be manipulated to resize

See Also:
Constant Field Values

LEFT


public static final int LEFT
The left edge of the component can be manipulated to resize

See Also:
Constant Field Values

NONE


public static final int NONE
The component can not be resized

See Also:
Constant Field Values

RIGHT


public static final int RIGHT
The right edge of the component can be manipulated to resize

See Also:
Constant Field Values

TOP


public static final int TOP
The top edge of the component can be manipulated to resize

See Also:
Constant Field Values

VERTICAL


public static final int VERTICAL
The component can be resized vertically - the top and bottom edges can be manipulated to resize

See Also:
Constant Field Values