Package vg.modules.search.components.searchTree

Examples of vg.modules.search.components.searchTree.SearchTree


    this.parameter = parameter;
    this.model = model;
    this.view = new JPanel(new GridBagLayout());
    //---------------------------------------
    this.aaPanel = new AdditionalAttributePanel();
    this.searchTree = new SearchTree(this.parameter, this.model);
    this.optionPanel = new OptionPanel(this.model);
    this.actionPanel = new ActionPanel(this.model);
    //create split pane between conditional panel and additional panel
    this.treeAndAddSplitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, this.searchTree.getView(), this.aaPanel.getView());
    this.treeAndAddSplitPane.setResizeWeight(0.5);
View Full Code Here

TOP

Related Classes of vg.modules.search.components.searchTree.SearchTree

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.