Examples of addTreeSelectionListener()


Examples of org.mevenide.idea.repository.tree.RepoTree.addTreeSelectionListener()

        }

        @Override
        protected RepoTree addRepo(final IRepositoryReader pRepo) {
            final RepoTree tree = super.addRepo(pRepo);
            tree.addTreeSelectionListener(selectionListener);
            return tree;
        }
    }
}
View Full Code Here

Examples of simtools.ui.SourceTree.addTreeSelectionListener()

                        }
                        TreeNode tn = (TreeNode) (st.getSelectionPath().getLastPathComponent());
                        ((DefaultTreeModel) (st.getModel())).nodeChanged(tn);
                    }
                });
                st.addTreeSelectionListener(new TreeSelectionListener() {
                    public void valueChanged(TreeSelectionEvent e) {
                        Object o = st.getSelectedSourceOrCollection();
                        if ((o instanceof DataSource) && e.isAddedPath()) {
                            VariableConflict vc = (VariableConflict) list.getSelectedValue();
                            vc.ds = (DataSource) o;
View Full Code Here

Examples of tv.porst.swfretools.dissector.gui.main.flashtree.FlashTree.addTreeSelectionListener()

    final FileModel fileModel = new FileModel();

    panel = new TreePanel(fileModel);

    final FlashTree tree = panel.getTree();
    tree.addTreeSelectionListener(internalTreeSelectionListener);
    tree.addMouseListener(internalTreeClickListener);

    add(panel, BorderLayout.WEST);

    // Add Drag & Drop capabilities to the panel to make it easier to open files.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.