1 7 8 package javax.swing.plaf; 9 10 import javax.swing.JList ; 11 import java.awt.Point ; 12 import java.awt.Rectangle ; 13 14 15 24 25 public abstract class ListUI extends ComponentUI  26 { 27 36 public abstract int locationToIndex(JList list, Point location); 37 38 39 46 public abstract Point indexToLocation(JList list, int index); 47 48 49 56 public abstract Rectangle getCellBounds(JList list, int index1, int index2); 57 } 58 | Popular Tags |