List of usage examples for javax.swing.tree DefaultTreeModel subclass-usage
From source file MainClass.java
class SortTreeModel extends DefaultTreeModel { private Comparator comparator; public SortTreeModel(TreeNode node, Comparator c) { super(node); comparator = c;
From source file SortTreeDemo.java
class SortTreeModel extends DefaultTreeModel { private Comparator comparator; public SortTreeModel(TreeNode node, Comparator c) { super(node); comparator = c;
From source file org.isatools.isacreator.common.filterableTree.TreeFilterModel.java
/**
* TreeFilterModel
*
* @author eamonnmaguire
* @date Oct 20, 2010
*/
From source file org.hippoecm.frontend.model.tree.ObservableTreeModel.java
/**
* A JCR tree model implementation that can be shared by multiple tree instances.
* It is observable and can therefore not be used to register listeners. Use the {@link JcrTreeModel}
* instead to register {@link TreeModelListener}s.
*
* Each instance of this class should be registered separately. Hence this class does not override {@link #equals}
From source file it.cnr.icar.eric.client.ui.swing.ConceptsTreeModel.java
/**
* A JTable that lists
*
* @author Jim Glennon
* @author <a href="mailto:Farrukh.Najmi@Sun.COM">Farrukh S. Najmi</a>
*/
From source file tvbrowser.extras.favoritesplugin.dlgs.FavoriteTreeModel.java
/**
* The model for the favorite tree.
*
* @author Ren Mach
* @since 2.6
*/
From source file org.parosproxy.paros.model.SiteMap.java
public class SiteMap extends DefaultTreeModel { private static final long serialVersionUID = 2311091007687218751L; private static Map<Integer, SiteNode> hrefMap = new HashMap<>();