Example usage for javax.swing.tree TreeModel interface-usage

List of usage examples for javax.swing.tree TreeModel interface-usage

Introduction

In this page you can find the example usage for javax.swing.tree TreeModel interface-usage.

Usage

From source file org.photovault.swingui.PhotoFolderTreeModel.java

/**
   This class implements a TreeModel for PhotoFolders.
*/

public class PhotoFolderTreeModel implements TreeModel, PhotoFolderChangeListener {
    static Log log = LogFactory.getLog(PhotoFolderTreeModel.class.getName());

From source file org.drugis.mtc.gui.AnalysesModel.java

public class AnalysesModel implements TreeModel {
    public static class RootNode {
        @Override
        public String toString() {
            return "Models";
        }

From source file com.haulmont.cuba.desktop.gui.data.TreeModelAdapter.java

public class TreeModelAdapter implements TreeModel {

    protected HierarchicalDatasource<Entity<Object>, Object> datasource;

    protected Object rootNode = "Root";

From source file components.GenealogyModel.java

public class GenealogyModel implements TreeModel {
    private boolean showAncestors;
    private Vector<TreeModelListener> treeModelListeners = new Vector<TreeModelListener>();
    private Person rootPerson;

    public GenealogyModel(Person root) {

From source file org.pentaho.reporting.designer.extensions.pentaho.repository.model.RepositoryTreeModel.java

public class RepositoryTreeModel implements TreeModel {
    private class RepositoryTreeRoot {
        private FileObject root;

        private RepositoryTreeRoot() {
        }

From source file org.pentaho.reporting.designer.core.editor.expressions.ExpressionsTreeModel.java

public class ExpressionsTreeModel implements TreeModel {
    private static class ExpressionGroupingRoot {
        private ExpressionGroupingRoot() {
        }

        public String toString() {

From source file FileTreeFrame.java

class FileSystemModel implements TreeModel {
    private File root;

    private Vector listeners = new Vector();

    public FileSystemModel(File rootDirectory) {

From source file TreeModelSupport.java

/**
 * A Class that implements the listener registration and event fire methods for
 * a TreeModel. This class gets the implementation from DefaultTreeModel
 *
 * @version %I% %G%
 * @author  Mark Davidson

From source file com.igormaznitsa.mindmap.model.MindMap.java

public final class MindMap implements Serializable, Constants, TreeModel {

    private static final long serialVersionUID = 5929181596778047354L;

    private static final Logger LOGGER = LoggerFactory.getLogger(MindMap.class);

From source file com.projity.grouping.core.hierarchy.NodeHierarchy.java

/**
 *
 */
public interface NodeHierarchy extends TreeModel {

    //   public void add(Node parent,Node child,int actionType);