| java.lang.Object javax.swing.table.AbstractTableModel org.jdesktop.test.AncientSwingTeam
AncientSwingTeam | public class AncientSwingTeam extends AbstractTableModel (Code) | | Standard Table with class-Infos. Taken from some old
SwingSet...
Can remove/add rows.
|
Inner Class :public static class NamedColor extends Color | |
cybergreen | NamedColor cybergreen(Code) | | |
darkgreen | NamedColor darkgreen(Code) | | |
forestgreen | NamedColor forestgreen(Code) | | |
jfcblue | NamedColor jfcblue(Code) | | |
jfcblue2 | NamedColor jfcblue2(Code) | | |
orange | NamedColor orange(Code) | | |
purple | NamedColor purple(Code) | | |
rowCount | protected int rowCount(Code) | | |
rustred | NamedColor rustred(Code) | | |
sunpurple | NamedColor sunpurple(Code) | | |
suspectpink | NamedColor suspectpink(Code) | | |
turquoise | NamedColor turquoise(Code) | | |
violet | NamedColor violet(Code) | | |
yellow | NamedColor yellow(Code) | | |
AncientSwingTeam | public AncientSwingTeam()(Code) | | |
AncientSwingTeam | public AncientSwingTeam(int count)(Code) | | |
getColumnClass | public Class getColumnClass(int c)(Code) | | returns class of column by asking class of value in first row.
|
getColumnCount | public int getColumnCount()(Code) | | |
getRowCount | public int getRowCount()(Code) | | |
getValueAt | public Object getValueAt(int row, int col)(Code) | | reuses values internally
|
insertRows | public void insertRows(int rowIndex, int length)(Code) | | insert length rows at rowIndex. PRE: rowIndex <= getRowCount()
|
isCellEditable | public boolean isCellEditable(int row, int col)(Code) | | everything is editable.
|
removeRows | public void removeRows(int rowIndex, int length)(Code) | | remove rows. NOTE: not tested
|
setValueAt | public void setValueAt(Object value, int row, int col)(Code) | | |
|
|