Searched refs:selections (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/security/auth/callback/
H A DChoiceCallback.java56 * @serial whether multiple selections are allowed from the list of
66 private int[] selections; field in class:ChoiceCallback
71 * whether or not multiple selections from the list of choices are allowed.
85 * not multiple selections can be made from the
152 * Get the boolean determining whether multiple selections from
157 * @return whether multiple selections are allowed.
174 this.selections = new int[1];
175 this.selections[0] = selection;
183 * @param selections the selections represente
192 setSelectedIndexes(int[] selections) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGlyphView.java359 * Lazily initializes the selections field
363 if (selections == null || viewPosCount > selections.length) {
364 selections = new byte[viewPosCount];
367 for (int i = 0; i < viewPosCount; selections[i++] = 0);
450 selections[hStart-p0]++;
451 selections[hEnd-p0]--;
464 selections[curPos] == 0) curPos++;
473 (checkSum += selections[curPos]) != 0) curPos++;
1082 private byte[] selections field in class:GlyphView
[all...]

Completed in 65 milliseconds