EchoPoint
2.1.0rc4

echopointng.able
Interface Insetable

All Superinterfaces:
Delegateable
All Known Implementing Classes:
AbleComponent, ButtonEx, DisplayLayoutData, LabelEx, LiveTable, RichTextArea, Separator, TextFieldEx

public interface Insetable
extends Delegateable

The Insetable interface is used to set extra space inside and outside a component. The 'Insets' is the extra space around the content of a component, while the 'Outsets' is the extra space around the outside of a component.


Field Summary
static nextapp.echo2.app.Insets DEFAULT_INSETS
          A default insets object that has zero-pixel sizes.
static nextapp.echo2.app.Insets DEFAULT_OUTSETS
          A default outsets object that has zero-pixel sizes.
static java.lang.String PROPERTY_INSETS
           
static java.lang.String PROPERTY_OUTSETS
           
 
Method Summary
 nextapp.echo2.app.Insets getInsets()
           
 nextapp.echo2.app.Insets getOutsets()
           
 void setInsets(nextapp.echo2.app.Insets newValue)
          Sets the Insets in play.
 void setOutsets(nextapp.echo2.app.Insets newValue)
          Sets the Outsets in play.
 
Methods inherited from interface echopointng.able.Delegateable
getRenderProperty, getRenderProperty
 

Field Detail

DEFAULT_INSETS

public static final nextapp.echo2.app.Insets DEFAULT_INSETS
A default insets object that has zero-pixel sizes.


DEFAULT_OUTSETS

public static final nextapp.echo2.app.Insets DEFAULT_OUTSETS
A default outsets object that has zero-pixel sizes.


PROPERTY_INSETS

public static final java.lang.String PROPERTY_INSETS
See Also:
Constant Field Values

PROPERTY_OUTSETS

public static final java.lang.String PROPERTY_OUTSETS
See Also:
Constant Field Values
Method Detail

getInsets

public nextapp.echo2.app.Insets getInsets()
Returns:
the Insets in use or null if here are none

getOutsets

public nextapp.echo2.app.Insets getOutsets()
Returns:
the Outsets in use or null if here are none

setInsets

public void setInsets(nextapp.echo2.app.Insets newValue)
Sets the Insets in play. The Insets control the extra space around the content of a container.

Parameters:
newValue - - the Insets to use

setOutsets

public void setOutsets(nextapp.echo2.app.Insets newValue)
Sets the Outsets in play. The Outsets control the extra space around the outside of a container.

Parameters:
newValue - - the Ousets to use

EchoPoint
2.1.0rc4