1 19 20 package com.sslexplorer.table; 21 22 import java.util.List ; 23 24 25 public interface TableItemModel extends TableModel { 26 27 31 public String getId(); 32 33 36 public void clear(); 37 38 44 public TableItem getItem(int index); 45 46 51 public void addItem(TableItem item); 52 53 58 public List getItems(); 59 60 66 public boolean contains(TableItem item); 67 68 73 public boolean getEmpty(); 74 } 75 | Popular Tags |