Searched defs:focusIndex (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXListPeer.java96 // since 'focusIndex' and 'selected[0]' are equal for single-selection list
97 int focusIndex; field in class:XListPeer
515 return focusIndex;
519 focusIndex = value;
1009 // Otherwise, the updating of the 'focusIndex' variable will be incorrect
1035 int selPos = ( isSelected( focusIndex )) ? focusIndex: -1;
1330 // We should update 'focusIndex' variable more carefully
1839 if (log.isLoggable(PlatformLogger.FINER)) log.finer("Painting items from " + firstItem + " to " + lastItem + ", focused " + focusIndex + ", first " + getFirstVisibleItem() + ", last " + getLastVisibleItem());
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java169 private int focusIndex; field in class:BasicTabbedPaneUI
221 focusIndex = -1;
1980 repaintTab(focusIndex);
1981 focusIndex = index;
1982 repaintTab(focusIndex);
1985 focusIndex = index;
2001 * Makes sure the focusIndex is valid.
2004 if (focusIndex >= tabPane.getTabCount()) {
2016 return focusIndex;
2249 int focusIndex
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java161 private int focusIndex; field in class:AquaTabbedPaneCopyFromBasicUI
219 focusIndex = -1;
1844 repaintTab(focusIndex);
1845 focusIndex = index;
1846 repaintTab(focusIndex);
1848 focusIndex = index;
1864 * Makes sure the focusIndex is valid.
1867 if (focusIndex >= tabPane.getTabCount()) {
1879 return focusIndex;
2090 final int focusIndex
[all...]

Completed in 68 milliseconds