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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListSelectionModel.java60 private int anchorIndex = -1; field in class:DefaultListSelectionModel
362 private void updateLeadAnchorIndices(int anchorIndex, int leadIndex) { argument
364 if (this.anchorIndex != anchorIndex) {
365 markAsDirty(this.anchorIndex);
366 markAsDirty(anchorIndex);
374 this.anchorIndex = anchorIndex;
624 int anchorIndex = this.anchorIndex;
736 setAnchorSelectionIndex(int anchorIndex) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java55 private int anchorIndex = -1; field in class:OptionListModel
271 private void updateLeadAnchorIndices(int anchorIndex, int leadIndex) { argument
273 if (this.anchorIndex != anchorIndex) {
274 if (this.anchorIndex != -1) { // The unassigned state.
275 markAsDirty(this.anchorIndex);
277 markAsDirty(anchorIndex);
287 this.anchorIndex = anchorIndex;
480 return anchorIndex;
493 setAnchorSelectionIndex(int anchorIndex) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java2262 public void setAnchorSelectionIndex(final int anchorIndex) { argument
2263 if (isSelectableInListIndex(anchorIndex)) super.setAnchorSelectionIndex(anchorIndex);

Completed in 602 milliseconds