|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectrs.sol.soloist.server.uml.commonimplementation.runtime._ClassifierInstance
rs.sol.soloist.server.uml.commonimplementation.runtime._ClassInstance
rs.sol.soloist.server.javaimpl.runtime.SOLoistClassInstance
rs.sol.soloist.server.builtindomains.common.ObjectOfClass
rs.sol.soloist.server.guiconfiguration.layout.TableColumnData
public class TableColumnData
Defines column-specific CSS style and width for a
TableLayout
.
Code example that defines "header" CSS style and 100 pixels width for the first column in a table is shown bellow:
TableColumnData columnData = TableColumnData.create(0, "header", "100px");
TableLayout tLayout = new TableLayout();
tLayout.addColumnData(columnData);
GUIPanelComponent table = GUIPanelComponent.create(parent, tLayout);
TableRowData
Nested Class Summary | |
---|---|
static class |
TableColumnData.FQPropertyNames
Deprecated. Not for public use. |
static class |
TableColumnData.PROPERTIES
Deprecated. Not for public use. |
Field Summary | |
---|---|
static IClass |
CLASSIFIER
UML class reference |
static java.lang.String |
FQ_TYPE_NAME
Fully qualified UML class name |
IAttributeValue<Integer> |
index
Deprecated. Not for public use. |
IAttributeValue<Text> |
styleName
Deprecated. Not for public use. |
IAssociationEndInstance<TableLayout> |
tableLayout
Deprecated. Not for public use. |
IAttributeValue<Text> |
width
Deprecated. Not for public use. |
Constructor Summary | |
---|---|
TableColumnData()
|
Method Summary | |
---|---|
void |
constructor()
The domain-specific constructor of the Classifier. |
static TableColumnData |
create(int index,
java.lang.String styleName,
java.lang.String width)
Returns new TableColumnData object that specifies additional
column-specific layout information within an owner table layout. |
rs.sol.soloist.client.common.info.layout.TableColumnDataInfo |
createInfo()
Creates, returns, and fills a serializable TableColumnDataInfo object. |
int |
getIndex()
Returns the index of the column to which this object is related to. |
java.lang.String |
getStyleName()
Returns the CSS style of the column to which this object is related to. |
java.lang.String |
getWidth()
Returns the width of the column to which this object is related to. |
void |
setIndex(int index)
Sets the index of the column to which this object is related to. |
void |
setStyleName(java.lang.String style)
Sets the CSS style of the column to which this object is related to. |
void |
setWidth(java.lang.String w)
Sets the width of the column to which this object is related to. |
Methods inherited from class rs.sol.soloist.server.builtindomains.common.ObjectOfClass |
---|
handle |
Methods inherited from class rs.sol.soloist.server.javaimpl.runtime.SOLoistClassInstance |
---|
destroy, equals, getAssociationEndInstance, getAssociationEndInstances, getAttributeValue, getAttributeValues, getMyClass, getMyID, getSlot, getSlot, getSlots, getUMLClass, hashCode, isMarkedAsDeleted, toString |
Methods inherited from class rs.sol.soloist.server.uml.commonimplementation.runtime._ClassInstance |
---|
accept, accept, exists, getAssociationEndInstance, getAssociationEndInstance, getAssociationEndInstance, getClassifier, hasIdentity, isClassInstance, isDataTypeInstance, isEqualTo, makeClone, markAsDeleted |
Methods inherited from class rs.sol.soloist.server.uml.commonimplementation.runtime._ClassifierInstance |
---|
conformsTo, copySlots, copySlots, destructor, getAttributeValue, getAttributeValue, getAttributeValue, getClassifierFQName, getClassifierUQName, getFirstCommonGeneralizer, getFirstCommonGeneralizerFQName, getFirstCommonGeneralizerUQName, getMElement, getSlot, getSlot, isDirectInstanceOf, isDirectInstanceOf, isInstanceOf, isInstanceOf, isKindOf, isModelElement, isRTElement |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface rs.sol.soloist.server.uml.concepts.runtime.IClassifierInstance |
---|
conformsTo, copySlots, copySlots, destructor, getAttributeValue, getAttributeValue, getClassifierFQName, getClassifierUQName, getFirstCommonGeneralizer, getFirstCommonGeneralizerFQName, getFirstCommonGeneralizerUQName, getSlot, getSlot, isDirectInstanceOf, isDirectInstanceOf, isInstanceOf, isInstanceOf |
Methods inherited from interface rs.sol.soloist.server.uml.concepts.runtime.IRTElement |
---|
getMElement |
Methods inherited from interface rs.sol.soloist.server.uml.concepts.IElement |
---|
isKindOf, isModelElement, isRTElement |
Field Detail |
---|
@Deprecated public IAttributeValue<Integer> index
@Deprecated public IAttributeValue<Text> styleName
@Deprecated public IAttributeValue<Text> width
public static final java.lang.String FQ_TYPE_NAME
public static final IClass CLASSIFIER
@Deprecated public IAssociationEndInstance<TableLayout> tableLayout
Constructor Detail |
---|
public TableColumnData()
Method Detail |
---|
public void constructor()
IClassifierInstance
constructor
in interface IClassifierInstance
constructor
in class rs.sol.soloist.server.builtindomains.common.ObjectOfClass
public rs.sol.soloist.client.common.info.layout.TableColumnDataInfo createInfo()
TableColumnDataInfo
object.
The returned object must be able to transmit every property of objects of
this class from server to clients (browsers).
TableColumnDataInfo
objectpublic static TableColumnData create(int index, java.lang.String styleName, java.lang.String width)
TableColumnData
object that specifies additional
column-specific layout information within an owner table layout.
index
- the index of the column to which this object is related tostyleName
- the CSS style of the column with specified indexwidth
- the width of the column with specified index
TableColumnData
object that specifies additional
column-specific layout informationpublic void setIndex(int index)
index
- the index of the columnpublic void setStyleName(java.lang.String style)
style
- the CSS style of the columnpublic void setWidth(java.lang.String w)
w
- the width of the columnpublic int getIndex()
public java.lang.String getStyleName()
public java.lang.String getWidth()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |