| com.jeta.forms.store.properties.JETAProperty com.jeta.forms.store.properties.CompoundLineProperty
CompoundLineProperty | public class CompoundLineProperty extends JETAProperty (Code) | | Describes a series of line properties that make up a compound line. In the
designer, the user can use either a horizontal or vertical line component.
These components are really compound lines. This provides the ability to
support '3D' line separators on forms. The CompoundLineProperty
is used to store the attributes for each line in a compound line component.
author: Jeff Tassin |
VERSION | final public static int VERSION(Code) | | The version of this class
|
serialVersionUID | final static long serialVersionUID(Code) | | |
CompoundLineProperty | public CompoundLineProperty()(Code) | | Creates an empty CompoundLineProperty
|
CompoundLineProperty | public CompoundLineProperty(LineProperty lp)(Code) | | Creates a CompoundLineProperty with the specified line.
Parameters: lp - a property that describes a single line. |
addLine | public void addLine(LineProperty lp)(Code) | | Adds a line to this compound line.
Parameters: lp - the line property to add |
getLines | public Collection getLines()(Code) | | Returns a collection of LineProperty objects that make up
this compound line.
a collection of LineProperty objects. |
getPosition | public int getPosition()(Code) | | The position of the lines relative to their containment area.
the position value, one of the following constants defined inHorizontalLineComponent or defined inVerticalLineComponent LEFT ,CENTER , RIGHT , TOP or BOTTOM . |
iterator | public Iterator iterator()(Code) | | Returns an iterator to the lines LineProperty objects in
this compound line.
an iterator to the lines (LineProperty objects)in this compoundline. |
print | public void print()(Code) | | Prints this component state to the console
|
setLines | public void setLines(Collection lines)(Code) | | Clears all existing line properties from this object and adds the
specified set of lines
Parameters: lines - a collection of LineProperty objects to add tothis compound line. |
setPosition | public void setPosition(int pos)(Code) | | Sets the position of the lines relative to their bounds.
Parameters: pos - the position value, one of the following constants defined inHorizontalLineComponent or defined inVerticalLineComponent LEFT ,CENTER , RIGHT ,TOP or BOTTOM . |
setValue | public void setValue(Object prop)(Code) | | Sets this property to that of another CompoundLineProperty
Parameters: prop - a CompoundLineProperty |
updateBean | public void updateBean(JETABean jbean)(Code) | | JETAProperty implementation. no op fo this property.
|
Fields inherited from com.jeta.forms.store.properties.JETAProperty | final public static int VERSION(Code)(Java Doc) final static long serialVersionUID(Code)(Java Doc)
|
|
|