1 19 20 package org.netbeans.modules.db.util; 21 22 import javax.swing.ComboBoxModel ; 23 24 29 public interface DataComboBoxModel { 30 31 34 ComboBoxModel getListModel(); 35 36 40 String getItemDisplayName(Object item); 41 42 46 String getItemTooltipText(Object item); 47 48 52 String getNewItemDisplayName(); 53 54 60 void newItemActionPerformed(); 61 } 62 | Popular Tags |