Searched defs:addSelectionInterval (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DListSelectionModel.java111 void addSelectionInterval(int index0, int index1); method in interface:ListSelectionModel
155 * setSelectionInterval(), addSelectionInterval() or removeSelectionInterval().
163 * @see #addSelectionInterval
178 * setSelectionInterval(), addSelectionInterval() or removeSelectionInterval().
182 * @see #addSelectionInterval
262 * {@code setSelectionInterval} and {@code addSelectionInterval} are
267 * In this mode, {@code addSelectionInterval} behaves like
296 * @see #addSelectionInterval
H A DDefaultListSelectionModel.java488 public void addSelectionInterval(int index0, int index1) method in class:DefaultListSelectionModel
H A DJList.java1913 * {@code setSelectionInterval} and {@code addSelectionInterval} are
1918 * In this mode, {@code addSelectionInterval} behaves like
2063 * @see #addSelectionInterval
2083 * @see ListSelectionModel#addSelectionInterval
2084 * @see DefaultListSelectionModel#addSelectionInterval
2089 public void addSelectionInterval(int anchor, int lead) { method in class:JList
2090 getSelectionModel().addSelectionInterval(anchor, lead);
2110 * @see #addSelectionInterval
2220 * {@code addSelectionInterval} on the selection model to add the indices.
2226 * @see ListSelectionModel#addSelectionInterval
[all...]
H A DJTree.java2560 * addSelectionInterval(x, y)} is equivalent to
2561 * {@code addSelectionInterval(y, x)}.
2566 public void addSelectionInterval(int index0, int index1) { method in class:JTree
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java352 public void addSelectionInterval(int index0, int index1) method in class:OptionListModel
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java2253 super.addSelectionInterval(start, end);
2280 public void addSelectionInterval(final int index0, final int index1) { method in class:AquaFileChooserUI.MacListSelectionModel
2284 if (isSelectableInListIndex(index1)) super.addSelectionInterval(index1, index1);

Completed in 75 milliseconds