Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR-209 (Final Approval Ballot)

Uses of Interface
javax.swing.ListSelectionModel

Packages that use ListSelectionModel
javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. 
javax.swing.table Provides classes and interfaces for dealing with javax.swing.JTable
 

Uses of ListSelectionModel in javax.swing
 

Classes in javax.swing that implement ListSelectionModel
 class DefaultListSelectionModel
          Default data model for list selections.
 

Fields in javax.swing declared as ListSelectionModel
protected  ListSelectionModel JTable.selectionModel
          The ListSelectionModel of the table, used to keep track of row selections.
 

Methods in javax.swing that return ListSelectionModel
 ListSelectionModel JTable.getSelectionModel()
          Returns the ListSelectionModel that is used to maintain row selection state.
protected  ListSelectionModel JTable.createDefaultSelectionModel()
          Returns the default selection model object, which is a DefaultListSelectionModel.
protected  ListSelectionModel JList.createSelectionModel()
          Returns an instance of DefaultListSelectionModel.
 ListSelectionModel JList.getSelectionModel()
          Returns the value of the current selection model.
 

Methods in javax.swing with parameters of type ListSelectionModel
 void JTable.setSelectionModel(ListSelectionModel newModel)
          Sets the row selection model for this table to newModel and registers for listener notifications from the new selection model.
 void JList.setSelectionModel(ListSelectionModel selectionModel)
          Sets the selectionModel for the list to a non-null ListSelectionModel implementation.
 

Constructors in javax.swing with parameters of type ListSelectionModel
JTable(TableModel dm, TableColumnModel cm, ListSelectionModel sm)
          Constructs a JTable that is initialized with dm as the data model, cm as the column model, and sm as the selection model.
 

Uses of ListSelectionModel in javax.swing.table
 

Fields in javax.swing.table declared as ListSelectionModel
protected  ListSelectionModel DefaultTableColumnModel.selectionModel
          Model for keeping track of column selections
 

Methods in javax.swing.table that return ListSelectionModel
 ListSelectionModel DefaultTableColumnModel.getSelectionModel()
          Returns the ListSelectionModel that is used to maintain column selection state.
protected  ListSelectionModel DefaultTableColumnModel.createSelectionModel()
          Creates a new default list selection model.
 ListSelectionModel TableColumnModel.getSelectionModel()
          Returns the current selection model.
 

Methods in javax.swing.table with parameters of type ListSelectionModel
 void DefaultTableColumnModel.setSelectionModel(ListSelectionModel newModel)
          Sets the selection model for this TableColumnModel to newModel and registers for listener notifications from the new selection model.
 void TableColumnModel.setSelectionModel(ListSelectionModel newModel)
          Sets the selection model.
 


JSR-209 (Final Approval Ballot)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 209 specification.