Searched defs:getCellBounds (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DListUI.java45 * the cell's bounds, as provided by {@code getCellBounds}.
83 public abstract Rectangle getCellBounds(JList list, int index1, int index2); method in class:ListUI
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiListUI.java103 * Invokes the <code>getCellBounds</code> method on each UI handled by this object.
108 public Rectangle getCellBounds(JList a, int b, int c) { method in class:MultiListUI
110 ((ListUI) (uis.elementAt(0))).getCellBounds(a,b,c);
112 ((ListUI) (uis.elementAt(i))).getCellBounds(a,b,c);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java1046 Rectangle bounds = getCellBounds(first, first);
1079 Rectangle bounds = getCellBounds(location, location);
1103 bounds = getCellBounds(visIndex, visIndex);
1149 Rectangle cellBounds = getCellBounds(index, index);
1272 rect = getCellBounds(index, index);
1536 getCellBounds(index, index)) != null &&
1580 * as provided by {@code getCellBounds}. This method returns {@code -1}
1631 public Rectangle getCellBounds(int index0, int index1) { method in class:JList
1633 return (ui != null) ? ui.getCellBounds(this, index0, index1) : null;
2451 Rectangle r = getCellBounds(
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java304 Rectangle rowBounds = getCellBounds(list, index, index);
371 Rectangle prev = getCellBounds(list, index - 1);
372 Rectangle me = getCellBounds(list, index);
394 rect = getCellBounds(list, index);
401 rect = getCellBounds(list, index);
417 rect = getCellBounds(list, index);
422 Rectangle prev = getCellBounds(list, index - 1);
423 Rectangle me = getCellBounds(list, index);
433 rect = getCellBounds(list, index);
436 rect = getCellBounds(lis
951 public Rectangle getCellBounds(JList list, int index1, int index2) { method in class:BasicListUI
995 private Rectangle getCellBounds(JList list, int index) { method in class:BasicListUI
[all...]

Completed in 41 milliseconds