Searched defs:tabRuns (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java124 protected int tabRuns[] = new int[10]; field in class:BasicTabbedPaneUI
184 * tabRuns is not valid and shouldn't be used.
828 // Paint tabRuns of tabs from back to front
830 int start = tabRuns[i];
831 int next = tabRuns[(i == runCount - 1)? 0 : i + 1];
1644 int rectLen = tabRuns.length;
1646 System.arraycopy(tabRuns, 0, newArray, 0, runCount);
1647 tabRuns = newArray;
1652 int first = tabRuns[i];
1666 if (tabRuns[nextRu
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java116 protected int tabRuns[] = new int[10]; field in class:AquaTabbedPaneCopyFromBasicUI
176 * tabRuns is not valid and shouldn't be used.
788 // Paint tabRuns of tabs from back to front
790 final int start = tabRuns[i];
791 final int next = tabRuns[(i == runCount - 1) ? 0 : i + 1];
1522 final int rectLen = tabRuns.length;
1524 System.arraycopy(tabRuns, 0, newArray, 0, runCount);
1525 tabRuns = newArray;
1530 final int first = tabRuns[i];
1544 if (tabRuns[nextRu
[all...]

Completed in 3046 milliseconds