com.ibm.portal.content
Interface LayoutMetrics<V,E extends java.util.Map.Entry<java.lang.String,V>>

All Superinterfaces:
ListModel<E>, MetaData<V,E>
All Known Subinterfaces:
ModifiableLayoutMetrics<V,E>

public interface LayoutMetrics<V,E extends java.util.Map.Entry<java.lang.String,V>>
extends MetaData<V,E>

An interface describing metrics information for a node in a layout model. Currently, information such as orientation, width and height may be offered; in the future, information for voice representation of a layout node may be stored here too.

Since:
5.1.0.1
See Also:
LayoutNode.getLayoutMetrics(), LayoutModel

Field Summary
static java.lang.String HEIGHT
          The height of a layout node.
static java.lang.String ORIENTATION
          The orientation of a layout node.
static java.lang.String WIDTH
          The width of a layout node.
 
Method Summary
 
Methods inherited from interface com.ibm.portal.MetaData
getNames, getValue, iterator
 

Field Detail

ORIENTATION

static final java.lang.String ORIENTATION
The orientation of a layout node. If this value is set, the return value is a Orientation object.

See Also:
Constant Field Values

WIDTH

static final java.lang.String WIDTH
The width of a layout node. If this value is set, the width of a node is returned in string form; the width might be absolute, e.g. "200" or be given as a percentage, e.g. "80%".

See Also:
Constant Field Values

HEIGHT

static final java.lang.String HEIGHT
The height of a layout node. If this value is set, the height of a node is returned in string form; the height might be absolute, e.g. "200" or be given as a percentage, e.g. "80%". This value is not used in the WebSphere Portal V5.1.0.1.

See Also:
Constant Field Values