Searched refs:indexToLocation (Results 1 - 6 of 6) sorted by relevance

/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/
H A DListUI.java65 public abstract Point indexToLocation(JList<?> list, int index); method in class:ListUI
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DCheckRenderer.java49 Point p2 = list.indexToLocation(index);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/multi/
H A DMultiListUI.java90 * Invokes the <code>indexToLocation</code> method on each UI handled by this object.
95 public Point indexToLocation(JList<?> a, int b) { method in class:MultiListUI
97 ((ListUI) (uis.elementAt(0))).indexToLocation(a,b);
99 ((ListUI) (uis.elementAt(i))).indexToLocation(a,b);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DJList.java1604 public Point indexToLocation(int index) { method in class:JList
1606 return (ui != null) ? ui.indexToLocation(this, index) : null;
3614 Point componentLocation = parent.indexToLocation(indexInParent);
3628 return parent.indexToLocation(indexInParent);
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DJListOperator.java1239 * Maps {@code JList.indexToLocation(int)} through queue
1241 public Point indexToLocation(final int i) { method in class:JListOperator
1242 return (runMapping(new MapAction<Point>("indexToLocation") {
1245 return ((JList) getSource()).indexToLocation(i);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java1011 public Point indexToLocation(JList<?> list, int index) { method in class:BasicListUI

Completed in 158 milliseconds