Uses of Class
rs.sol.soloist.server.guiconfiguration.layout.DockLayoutDirection

Packages that use DockLayoutDirection
rs.sol.soloist.server.guiconfiguration.construction Provides root GUI class and the main class that deals with widget interaction. 
rs.sol.soloist.server.guiconfiguration.layout Provides classes for invisible GUI widgets that basically perform some kind of behavior on the client, like logics, filtering, relaying, etc. 
rs.sol.soloist.server.guiconfiguration.nonvisualcompoments Provides classes that capture widgets' layout specification. 
 

Uses of DockLayoutDirection in rs.sol.soloist.server.guiconfiguration.construction
 

Methods in rs.sol.soloist.server.guiconfiguration.construction with parameters of type DockLayoutDirection
 void GUIComponent.setDirectionAndSize(DockLayoutDirection direction, double size)
          Sets this widget position and size in a dock layout.
 

Uses of DockLayoutDirection in rs.sol.soloist.server.guiconfiguration.layout
 

Fields in rs.sol.soloist.server.guiconfiguration.layout declared as DockLayoutDirection
static DockLayoutDirection DockLayoutDirection.CENTER
           
static DockLayoutDirection DockLayoutDirection.EAST
           
static DockLayoutDirection DockLayoutDirection.NORTH
           
static DockLayoutDirection DockLayoutDirection.SOUTH
           
static DockLayoutDirection DockLayoutDirection.WEST
           
 

Fields in rs.sol.soloist.server.guiconfiguration.layout with type parameters of type DockLayoutDirection
 IAttributeValue<DockLayoutDirection> DockLayoutData.direction
          Deprecated. Not for public use.
 

Methods in rs.sol.soloist.server.guiconfiguration.layout that return DockLayoutDirection
static DockLayoutDirection DockLayoutDirection.fromString(java.lang.String uqName)
           
 DockLayoutDirection DockLayoutData.getDirection()
          Returns the direction of the widget that has this object assigned to.
 

Methods in rs.sol.soloist.server.guiconfiguration.layout with parameters of type DockLayoutDirection
 void DockLayoutData.constructor(DockLayoutDirection direction, double size)
          Performs an initialization for this object.
static DockLayoutData DockLayoutData.create(DockLayoutDirection direction, double size)
          Returns new DockLayoutData object that specifies direction and size of the widget that will have this object assigned to.
 void DockLayoutData.setDirection(DockLayoutDirection direction)
          Sets the direction of the widget that has this object assigned to.
static void DockLayoutData.setDirectionAndSize(GUIComponent component, DockLayoutDirection direction, double size)
          Deprecated. Not for public use.
 

Constructors in rs.sol.soloist.server.guiconfiguration.layout with parameters of type DockLayoutDirection
DockLayoutData(DockLayoutDirection direction, double size)
          Deprecated.  
 

Uses of DockLayoutDirection in rs.sol.soloist.server.guiconfiguration.nonvisualcompoments
 

Methods in rs.sol.soloist.server.guiconfiguration.nonvisualcompoments with parameters of type DockLayoutDirection
 void GUINonVisualComponent.setDirectionAndSize(DockLayoutDirection direction, double size)