de.frag.umlplugin.guilayout
Class FlexConstants

java.lang.Object
  extended by de.frag.umlplugin.guilayout.FlexConstants

public class FlexConstants
extends java.lang.Object

Some useful constants for flex layout GUIs.


Field Summary
static de.frag.umlplugin.guilayout.Alignment ALIGN_BOTTOM
          Constant for veetical component alignment in flex layout.
static de.frag.umlplugin.guilayout.Alignment ALIGN_CENTER
          Constant for horizontal or vertical component alignment in flex layout.
static de.frag.umlplugin.guilayout.Alignment ALIGN_FILL
          Constant for horizontal or vertical component alignment in flex layout.
static de.frag.umlplugin.guilayout.Alignment ALIGN_LEFT
          Constant for horizontal component alignment in flex layout.
static de.frag.umlplugin.guilayout.Alignment ALIGN_MAX
          Constant for horizontal or vertical component alignment in flex layout.
static de.frag.umlplugin.guilayout.Alignment ALIGN_RIGHT
          Constant for horizontal component alignment in flex layout.
static de.frag.umlplugin.guilayout.Alignment ALIGN_STRETCH
          Constant for horizontal or vertical component alignment in flex layout.
static de.frag.umlplugin.guilayout.Alignment ALIGN_TOP
          Constant for vertical component alignment in flex layout.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ALIGN_LEFT

public static final de.frag.umlplugin.guilayout.Alignment ALIGN_LEFT
Constant for horizontal component alignment in flex layout. ALIGN_LEFT aligned components will get their preferred width with empty space to the right of the component to fill up the cell space.


ALIGN_RIGHT

public static final de.frag.umlplugin.guilayout.Alignment ALIGN_RIGHT
Constant for horizontal component alignment in flex layout. ALIGN_RIGHT aligned components will get their preferred width with empty space to the left of the component to fill up the cell space.


ALIGN_TOP

public static final de.frag.umlplugin.guilayout.Alignment ALIGN_TOP
Constant for vertical component alignment in flex layout. ALIGN_TOP aligned components will get their preferred height with empty space to the bottom of the component to fill up the cell space.


ALIGN_BOTTOM

public static final de.frag.umlplugin.guilayout.Alignment ALIGN_BOTTOM
Constant for veetical component alignment in flex layout. ALIGN_BOTTOM aligned components will get their preferred height with empty space to the top of the component to fill up the cell space.


ALIGN_CENTER

public static final de.frag.umlplugin.guilayout.Alignment ALIGN_CENTER
Constant for horizontal or vertical component alignment in flex layout. ALIGN_CENTER aligned components will get their preferred width or height with empty space to the left and right or top and height of the component to fill up the cell space.


ALIGN_FILL

public static final de.frag.umlplugin.guilayout.Alignment ALIGN_FILL
Constant for horizontal or vertical component alignment in flex layout. ALIGN_FILL aligned components will get the cell width or height to fill up the cell space.


ALIGN_STRETCH

public static final de.frag.umlplugin.guilayout.Alignment ALIGN_STRETCH
Constant for horizontal or vertical component alignment in flex layout. ALIGN_STRETCH aligned components will stretch the cell size in horizontal or vertical direction and the component itself will fill the stretched space.


ALIGN_MAX

public static final de.frag.umlplugin.guilayout.Alignment ALIGN_MAX
Constant for horizontal or vertical component alignment in flex layout. ALIGN_MAX aligned components will get the maximum preferred width or height of all ALIGN_MAX aligned components of the same container.