Searched refs:treeSelectionModel (Results 1 - 5 of 5) sorted by relevance

/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/tree/
H A DAbstractLayoutCache.java53 protected TreeSelectionModel treeSelectionModel; field in class:AbstractLayoutCache
162 if(treeSelectionModel != null)
163 treeSelectionModel.setRowMapper(null);
164 treeSelectionModel = newLSM;
165 if(treeSelectionModel != null)
166 treeSelectionModel.setRowMapper(this);
172 * @return the <code>treeSelectionModel</code>
175 return treeSelectionModel;
H A DVariableHeightLayoutCache.java131 if(treeSelectionModel != null)
132 treeSelectionModel.removeSelectionPath
135 if(treeSelectionModel != null)
136 treeSelectionModel.resetRowSelection();
497 if(treeSelectionModel != null)
498 treeSelectionModel.resetRowSelection();
584 if(treeSelectionModel != null)
585 treeSelectionModel.resetRowSelection();
756 if(clearSelection && treeSelectionModel != null) {
757 treeSelectionModel
[all...]
H A DFixedHeightLayoutCache.java413 if(isVisible && treeSelectionModel != null)
414 treeSelectionModel.resetRowSelection();
454 if(treeSelectionModel != null)
455 treeSelectionModel.resetRowSelection();
513 if(treeSelectionModel != null && wasVisible && wasExpanded)
514 treeSelectionModel.resetRowSelection();
626 if(clearSelection && treeSelectionModel != null) {
627 treeSelectionModel.clearSelection();
1162 if(visible && treeSelectionModel != null) {
1163 treeSelectionModel
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java149 protected TreeSelectionModel treeSelectionModel; field in class:BasicTreeUI
602 treeSelectionModel != null)
603 treeSelectionModel.removePropertyChangeListener
605 if(treeSelectionListener != null && treeSelectionModel != null)
606 treeSelectionModel.removeTreeSelectionListener
608 treeSelectionModel = newLSM;
609 if(treeSelectionModel != null) {
611 treeSelectionModel.addPropertyChangeListener
614 treeSelectionModel.addTreeSelectionListener
617 treeState.setSelectionModel(treeSelectionModel);
[all...]
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DJTreeOperator.java2819 public void setSelectionModel(final TreeSelectionModel treeSelectionModel) { argument
2823 ((JTree) getSource()).setSelectionModel(treeSelectionModel);

Completed in 72 milliseconds