Example usage for javax.swing JTree subclass-usage

List of usage examples for javax.swing JTree subclass-usage

Introduction

In this page you can find the example usage for javax.swing JTree subclass-usage.

Usage

From source file org.orbisgis.sif.components.fstree.FileTree.java

/**
 * This JTree Can be linked with the file system thanks to the TreeNodeFolder
 * @author Nicolas Fortin
 */
public class FileTree extends JTree implements TreeNodeFileFactoryManager {
    private static final long serialVersionUID = 1L;

From source file TreeTester.java

class DndTree extends JTree implements Autoscroll {

    private Insets insets;

    private int top = 0, bottom = 0, topRow = 0, bottomRow = 0;

From source file com.sec.ose.osi.ui.frm.main.identification.JTreeAllFiles.java

/**
 * JTreeAllFiles
 * @author suhyun47.kim, sjh.yoo, hankido.lee
 * 
 */
public class JTreeAllFiles extends JTree {

From source file de.tbuchloh.kiskis.gui.treeview.TreeView.java

/**
 * <b>TreeView</b>:
 * 
 * @author gandalf
 * @version $Id: TreeView.java,v 1.13 2007/02/18 14:37:51 tbuchloh Exp $
 */

From source file mobac.gui.components.JMapSourceTree.java

/**
 * @author Maksym "elmuSSo" Kondej
 * 
 *         This class holds methods needed for managing a MapSources loaded into a JTree structure
 */
public class JMapSourceTree extends JTree {

From source file unikn.dbis.univis.navigation.tree.VTree.java

/**
 * TODO: document me!!!
 * <p/>
 * <code>VTree</code>.
 * <p/>
 * User: raedler, weiler

From source file org.openconcerto.erp.panel.ITreeSelection.java

public class ITreeSelection extends JTree
        implements MouseListener, EmptyObject, ValueWrapper<Integer>, RowItemViewComponent {

    private SQLElement element;

    private ITreeSelectionNode rootNode;

From source file UndoExample3.java

class UndoableTree extends JTree {
    // Only one constructor for brevity
    public UndoableTree(TreeNode root) {
        super(root);
    }

From source file UndoExample4.java

class UndoableTree2 extends JTree {
    public UndoableTree2(TreeNode root) {
        super(root);
    }

    public void addUndoableEditListener(UndoableEditListener l) {

From source file com.qspin.qtaste.ui.TestCaseTree.java

@SuppressWarnings("serial")
public class TestCaseTree extends JTree implements DragSourceListener, DropTargetListener, DragGestureListener {

    static DataFlavor localObjectFlavor;
    static {
        try {