| java.lang.Object javax.swing.table.AbstractTableModel de.mcs.jmeasurement.gui.MeasureTableModel
MeasureTableModel | public MeasureTableModel()(Code) | | |
MeasureTableModel | public MeasureTableModel(String snapshotname)(Code) | | Parameters: snapshotname - using the point in the snapshot.. |
getColumnDescription | final public String getColumnDescription(int column)(Code) | | getting the description for every column.
Parameters: column - column index String the description |
getColumnName | final public String getColumnName(int column)(Code) | | Returns a default name for the column using spreadsheet conventions: A,
B, C, ... Z, AA, AB, etc. If column cannot be found,
returns an empty string.
Parameters: column - the column being queried a string containing the default name of column See Also: javax.swing.table.AbstractTableModel.getColumnName(int) |
getFilter | final public String getFilter()(Code) | | Returns the filter. |
getLongValues | final public Object[] getLongValues()(Code) | | getting the longest value for every column.
Object [] |
getMeasurePoint | final public MeasurePoint getMeasurePoint(String pointName)(Code) | | getting a single point with name.
Parameters: pointName - name of the point to get. MeasurePoint if the point exists, otherwise null. |
getSnapshot | final public String getSnapshot()(Code) | | the snapshot |
getValueAt | final public Object getValueAt(int rowIndex, int columnIndex)(Code) | | Returns the value for the cell at columnIndex and
rowIndex .
Parameters: rowIndex - the row whose value is to be queried Parameters: columnIndex - the column whose value is to be queried the value Object at the specified cell See Also: javax.swing.table.TableModel.getValueAt(intint) |
setFilter | final public void setFilter(String aFilter)(Code) | | Parameters: aFilter - The filter to set. |
setSnapshot | final public void setSnapshot(String snapshotname)(Code) | | Parameters: snapshotname - the snapshot to set |
|
|