Package fr.soleil.gumtreeexplorer.util

Examples of fr.soleil.gumtreeexplorer.util.TitledPanel


    JScrollPane treeScroll = new JScrollPane(tree);
    JXLayer<JScrollPane> treeScrollLayer = new JXLayer<JScrollPane>(treeScroll,
        new MouseScrollableUI());

    JScrollPane infoScroll = new JScrollPane(infosArea);
    TitledPanel infosPanel = new TitledPanel(MESSAGES.getString("NodeInformations"));
    infosPanel.setLayout(new BorderLayout());
    infosPanel.add(infoScroll, BorderLayout.CENTER);

    JSplitPane treeSplit = new JSplitPane(JSplitPane.VERTICAL_SPLIT, treeScrollLayer,
        infosPanel);
    JSplitPane mainSplit = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, treeSplit, tabbedPane);
View Full Code Here

TOP

Related Classes of fr.soleil.gumtreeexplorer.util.TitledPanel

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.