1 package zirc.gui.smiliesWindow ; 2 3 import javax.swing.table.* ; 4 5 18 25 26 public class CustomDataModel extends AbstractTableModel 27 { 28 29 public Object getValueAt(int iRowIndex, int iColumnIndex) 30 { 31 return "" + iColumnIndex + "," + iRowIndex ; 32 } 33 34 public void setValueAt(Object aValue, int iRowIndex, int iColumnIndex) 35 {} 36 37 public int getColumnCount() 38 { 39 return 0 ; 40 } 41 42 public int getRowCount() 43 { 44 return SmiliesCollection.L ; 45 } 46 47 } 48 | Popular Tags |