Searched defs:lastIndex (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DListSelectionEvent.java56 private int lastIndex; field in class:ListSelectionEvent
61 * {@code lastIndex}, inclusive. {@code firstIndex} is less than or equal to
62 * {@code lastIndex}. The selection of at least one index within the range will
65 * @param firstIndex the first index in the range, <= lastIndex
66 * @param lastIndex the last index in the range, >= firstIndex
70 public ListSelectionEvent(Object source, int firstIndex, int lastIndex, argument
75 this.lastIndex = lastIndex;
95 public int getLastIndex() { return lastIndex; }
118 " lastIndex
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConcreteMethodImpl.java74 private int lastIndex = -1; field in class:ConcreteMethodImpl
169 lastIndex = codeBuf.length - 1;
299 if (codeIndex < firstIndex || codeIndex > lastIndex) {
341 if (codeIndex < firstIndex || codeIndex > lastIndex) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DConcreteMethodImpl.java80 private long lastIndex = -1; field in class:ConcreteMethodImpl
164 if (codeIndex < firstIndex || codeIndex > lastIndex) {
181 if (codeIndex < firstIndex || codeIndex > lastIndex) {
413 * firstIndex, lastIndex, and startLocation need to be
418 lastIndex = lntab.end;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListSelectionModel.java161 * <code>lastIndex</code>, has changed.
163 protected void fireValueChanged(int firstIndex, int lastIndex) { argument
164 fireValueChanged(firstIndex, lastIndex, getValueIsAdjusting());
169 * @param lastIndex the last index in the interval
174 protected void fireValueChanged(int firstIndex, int lastIndex, boolean isAdjusting) argument
182 e = new ListSelectionEvent(this, firstIndex, lastIndex, isAdjusting);
H A DJList.java1776 * @param firstIndex the first index in the range, {@code <= lastIndex}
1777 * @param lastIndex the last index in the range, {@code >= firstIndex}
1786 protected void fireSelectionValueChanged(int firstIndex, int lastIndex, argument
1795 e = new ListSelectionEvent(this, firstIndex, lastIndex,
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java125 * in the closed interval firstIndex,lastIndex, has changed.
127 protected void fireValueChanged(int firstIndex, int lastIndex) { argument
128 fireValueChanged(firstIndex, lastIndex, getValueIsAdjusting());
133 * @param lastIndex The last index in the interval.
137 protected void fireValueChanged(int firstIndex, int lastIndex, boolean isAdjusting) argument
145 e = new ListSelectionEvent(this, firstIndex, lastIndex, isAdjusting);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAbstractDocument.java201 // e = new ListSelectionEvent(this, firstIndex, lastIndex);
230 // e = new ListSelectionEvent(this, firstIndex, lastIndex);
259 // e = new ListSelectionEvent(this, firstIndex, lastIndex);
286 // e = new ListSelectionEvent(this, firstIndex, lastIndex);
2247 lastIndex = -1;
2386 if ((lastIndex >= lower) && (lastIndex <= upper)) {
2387 Element lastHit = children[lastIndex];
2391 return lastIndex;
2397 upper = lastIndex;
2471 private int lastIndex; field in class:AbstractDocument.BranchElement
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java1318 int lastIndex = -1; field in class:FilePane
1322 return lastIndex;
1326 lastIndex = i;
1330 lastIndex = -1;

Completed in 736 milliseconds