Package net.sourceforge.processdash.hier.ui

Examples of net.sourceforge.processdash.hier.ui.SelectableHierarchyTree


    this.props = props;
    this.l = l;

    /* Create the tree */
    tree = new SelectableHierarchyTree(props);

    /* Put the Tree in a scroller. */
    JScrollPane sp = new JScrollPane
      (ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,
       ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
View Full Code Here


        String choosePathsPrompt = getString("Choose_Paths");
        add(indentedComponent(2, new WrappingText(choosePathsPrompt)));
        add(verticalSpace(1));
        ProcessDashboard dashboard = ExportManager.getInstance()
                .getProcessDashboard();
        paths = new SelectableHierarchyTree(dashboard.getHierarchy(), instr
                .getPaths());
        paths.addListSelectionListener(new ListSelectionListener() {
            public void valueChanged(ListSelectionEvent e) {
                if (!e.getValueIsAdjusting())
                    updateInstruction();
View Full Code Here

        parent = dash;
        props = parent.getHierarchy();

        /* Create the tree. */
        tree = new SelectableHierarchyTree(props);

        /* Put the Tree in a scroller. */
        JScrollPane sp = new JScrollPane(
                ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,
                ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.hier.ui.SelectableHierarchyTree

Copyright © 2018 www.massapicom. 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.