1 19 20 package org.netbeans.swing.outline; 21 22 36 public interface RowModel { 37 42 public int getColumnCount(); 43 48 public Object getValueFor (Object node, int column); 49 55 public Class getColumnClass (int column); 56 61 public boolean isCellEditable (Object node, int column); 62 64 public void setValueFor (Object node, int column, Object value); 65 69 public String getColumnName (int column); 70 } 71 | Popular Tags |