1 package org.columba.mail.gui.table; 19 20 import javax.swing.event.TableColumnModelListener ; 21 22 import org.columba.mail.message.IHeaderList; 23 24 28 public interface IHeaderTableModel extends TableColumnModelListener { 29 33 void modify(Object [] uids); 34 35 void remove(Object [] uids); 40 41 void update(); 42 43 void clear(); 44 45 void set(IHeaderList headerList); 50 51 52 void enableThreadedView(boolean b); 53 54 56 58 60 String getColumnName(int column); 62 void clearColumns(); 63 void addColumn(String c); 64 } | Popular Tags |