src/share/classes/javax/swing/SingleSelectionModel.java

Print this page
rev 10121 : 8046485: Add missing @since tag under javax.swing.*
Reviewed-by:


  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.swing;
  27 
  28 import javax.swing.event.*;
  29 
  30 /**
  31  * A model that supports at most one indexed selection.
  32  *
  33  * @author Dave Moore

  34  */
  35 public interface SingleSelectionModel {
  36     /**
  37      * Returns the model's selection.
  38      *
  39      * @return  the model's selection, or -1 if there is no selection
  40      * @see     #setSelectedIndex
  41      */
  42     public int getSelectedIndex();
  43 
  44     /**
  45      * Sets the model's selected index to <I>index</I>.
  46      *
  47      * Notifies any listeners if the model changes
  48      *
  49      * @param index an int specifying the model selection
  50      * @see   #getSelectedIndex
  51      * @see   #addChangeListener
  52      */
  53     public void setSelectedIndex(int index);




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.swing;
  27 
  28 import javax.swing.event.*;
  29 
  30 /**
  31  * A model that supports at most one indexed selection.
  32  *
  33  * @author Dave Moore
  34  * @since 1.2
  35  */
  36 public interface SingleSelectionModel {
  37     /**
  38      * Returns the model's selection.
  39      *
  40      * @return  the model's selection, or -1 if there is no selection
  41      * @see     #setSelectedIndex
  42      */
  43     public int getSelectedIndex();
  44 
  45     /**
  46      * Sets the model's selected index to <I>index</I>.
  47      *
  48      * Notifies any listeners if the model changes
  49      *
  50      * @param index an int specifying the model selection
  51      * @see   #getSelectedIndex
  52      * @see   #addChangeListener
  53      */
  54     public void setSelectedIndex(int index);