Package org.apache.airavata.xbaya.ui.views

Examples of org.apache.airavata.xbaya.ui.views.ParameterPropertyPanel


        }
        hide();
    }

    private void initGui() {
        this.inputPanel = new ParameterPropertyPanel("Inputs");
        this.outputPanel = new ParameterPropertyPanel("Outputs");

        JPanel mainPanel = new JPanel();
        mainPanel.setLayout(new GridLayout(1, 2)); // To have the same size.
        mainPanel.add(this.inputPanel.getSwingComponent());
        mainPanel.add(this.outputPanel.getSwingComponent());
View Full Code Here

TOP

Related Classes of org.apache.airavata.xbaya.ui.views.ParameterPropertyPanel

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.