1 7 8 package javax.swing.plaf.basic; 9 10 import java.awt.event.MouseListener ; 11 import java.awt.event.MouseMotionListener ; 12 import java.awt.event.KeyListener ; 13 import javax.swing.JList ; 14 15 16 32 public interface ComboPopup { 33 36 public void show(); 37 38 41 public void hide(); 42 43 48 public boolean isVisible(); 49 50 55 public JList getList(); 56 57 63 public MouseListener getMouseListener(); 64 65 71 public MouseMotionListener getMouseMotionListener(); 72 73 77 public KeyListener getKeyListener(); 78 79 83 public void uninstallingUI(); 84 } 85 | Popular Tags |