Generated by
JDiff

Interface javax.swing.tree.TreeSelectionModel

Documentation changed from old to new.

Changed Methods
void addPropertyChangeListener(PropertyChangeListener) Documentation changed from old to new.
Adds a PropertyChangeListener to the listener list.
void addSelectionPath(TreePath) Documentation changed from old to new.
Adds path to the current selection.
void addSelectionPaths(TreePath[]) Documentation changed from old to new.
Adds paths to the current selection.
void addTreeSelectionListener(TreeSelectionListener) Documentation changed from old to new.
Adds x to the list of listeners that are notified each time the set of selected TreePaths changes.
TreePath getLeadSelectionPath() Documentation changed from old to new.
Returns the last path that was added.
int getMaxSelectionRow() Documentation changed from old to new.
Returns the largest value obtained from the RowMapper for the current set of selected TreePaths.
int getMinSelectionRow() Documentation changed from old to new.
Returns the smallest value obtained from the RowMapper for the current set of selected TreePaths.
RowMapper getRowMapper() Documentation changed from old to new.
Returns the RowMapper instance that is able to map a TreePath to a row.
int getSelectionMode() Documentation changed from old to new.
Returns the current selection mode one of SINGLE_TREE_SELECTION CONTIGUOUS_TREE_SELECTION or DISCONTIGUOUS_TREE_SELECTION.
TreePath getSelectionPath() Documentation changed from old to new.
Returns the first path in the selection.
TreePath[] getSelectionPaths() Documentation changed from old to new.
Returns the paths in the selection.
int[] getSelectionRows() Documentation changed from old to new.
Returns all of the currently selected rows.
boolean isPathSelected(TreePath) Documentation changed from old to new.
Returns true if the path path is in the current selection.
void removePropertyChangeListener(PropertyChangeListener) Documentation changed from old to new.
Removes a PropertyChangeListener from the listener list.
void removeSelectionPath(TreePath) Documentation changed from old to new.
Removes path from the selection.
void removeSelectionPaths(TreePath[]) Documentation changed from old to new.
Removes paths from the selection.
void removeTreeSelectionListener(TreeSelectionListener) Documentation changed from old to new.
Removes x from the list of listeners that are notified each time the set of selected TreePaths changes.
void resetRowSelection() Documentation changed from old to new.
Updates this object's mapping from TreePaths to rows.
void setRowMapper(RowMapper) Documentation changed from old to new.
Sets the RowMapper instance.
void setSelectionMode(int) Documentation changed from old to new.
Sets the selection model which must be one of SINGLE_TREE_SELECTION CONTIGUOUS_TREE_SELECTION or DISCONTIGUOUS_TREE_SELECTION.
void setSelectionPath(TreePath) Documentation changed from old to new.
Sets the selection to path.
void setSelectionPaths(TreePath[]) Documentation changed from old to new.
Sets the selection to path.
 

Changed Fields
int CONTIGUOUS_TREE_SELECTION Documentation changed from old to new.
Selection can only be contiguous.