org.tm4j.panckoucke.impl.abstraction.util .Matrix

Description

Java bean that exposes the semantics of a matrix. Instances of this class may be transformed into an abstract model with the help of MatrixMolder. The number of columns of a Matrix must be passed into the constructor and it is a immutable property.

Inheritance Hierarchy

Method Summary
java.lang.Object getCell(int rowindex,int colindex)
void getColumnCount()
Returns the number of columns of this Matrix
Matrix.Column getColumnObjects()
java.lang.Object getData()
returns the data of this matrix in a two-dimensional array.
org.tm4j.panckoucke.model.AMGestalt getGestaltForColumns()
org.tm4j.panckoucke.model.AMGestalt getGestaltForData()
org.tm4j.panckoucke.model.AMGestalt getGestaltForRows()
void getRowCount()
Returns the number of rows of this Matrix
java.lang.Object getRowObjects()
void setCell(java.lang.Object value,int rowindex,int colindex)
Fills a distinct cell in the matrix with the given value.
void setColumn(int colindex,java.lang.Object object,java.lang.String label)
Sets the value of the column with the given index to the given value
void setGestaltForColumns(org.tm4j.panckoucke.model.AMGestalt gestaltForColumns)
void setGestaltForData(org.tm4j.panckoucke.model.AMGestalt gestaltForData)
void setGestaltForRows(org.tm4j.panckoucke.model.AMGestalt gestaltForRows)
void setRowObject(java.lang.Object value,int rowindex)

Related Topics