|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
|
+--javax.swing.table.AbstractTableModel
|
+--com.ewasystems.data.nn.NNDataView
Neural Network Data View
Description: Generic Neural Network Data Interface
Copyright: (c) 1998 - 2005
Company: EWA Systems
| Constructor Summary | |
NNDataView()
|
|
| Method Summary | |
java.lang.Class |
getColumnClass(int colIndex)
Gets the Specified Column Class |
abstract int |
getColumnCount()
Gets the Table Column Count |
abstract java.lang.String |
getColumnName(int colIndex)
Gets the Specified Column Name |
abstract double |
getDoubleAt(int rowIndex,
int colIndex)
Gets the Double Value at the Specified Row and Column Indices |
abstract int |
getRowCount()
Gets the Table Row Count |
abstract java.lang.Object |
getValueAt(int rowIndex,
int colIndex)
Gets the Raw Object at the Specified Row and Column Indices |
abstract NNVector |
getVector(int rowIndex)
Gets a Vector |
abstract boolean |
isCellEditable(int rowIndex,
int colIndex)
Returns if the Cell is Editable |
abstract void |
setDoubleAt(double value,
int rowIndex,
int colIndex)
Sets the Double Value at the Specified Row and Column Indices |
abstract void |
setValueAt(java.lang.Object value,
int rowIndex,
int colIndex)
Sets the Raw Object at the Specified Row and Column Indices |
abstract void |
setVector(int rowIndex,
NNVector vector)
Sets a Vector |
| Methods inherited from class javax.swing.table.AbstractTableModel |
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, removeTableModelListener |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public NNDataView()
| Method Detail |
public abstract NNVector getVector(int rowIndex)
rowIndex - The Row Index of the Vector
public abstract void setVector(int rowIndex,
NNVector vector)
rowIndex - The Row Index of the Vectorvector - The Vectorpublic abstract int getRowCount()
getRowCount in class javax.swing.table.AbstractTableModelpublic abstract int getColumnCount()
getColumnCount in class javax.swing.table.AbstractTableModelpublic abstract java.lang.String getColumnName(int colIndex)
getColumnName in class javax.swing.table.AbstractTableModelcolIndex - The Column Indexpublic java.lang.Class getColumnClass(int colIndex)
getColumnClass in class javax.swing.table.AbstractTableModelcolIndex - The Column Index
public abstract boolean isCellEditable(int rowIndex,
int colIndex)
isCellEditable in class javax.swing.table.AbstractTableModelrowIndex - The Row IndexcolIndex - The Column Index
public abstract java.lang.Object getValueAt(int rowIndex,
int colIndex)
getValueAt in class javax.swing.table.AbstractTableModelrowIndex - The Row IndexcolIndex - The Col Index
public abstract void setValueAt(java.lang.Object value,
int rowIndex,
int colIndex)
setValueAt in class javax.swing.table.AbstractTableModelvalue - The ObjectrowIndex - The Row IndexcolIndex - The Column Index
public abstract double getDoubleAt(int rowIndex,
int colIndex)
rowIndex - The Row IndexcolIndex - The Col Index
public abstract void setDoubleAt(double value,
int rowIndex,
int colIndex)
double - The Double ValuerowIndex - The Row IndexcolIndex - The Col Index
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||