Package qat.components

Examples of qat.components.EComboBox


    temp = new JPanel(new GridLayout(3,1));
    temp.setBorder(BorderFactory.createTitledBorder(Resources.getString("userDefinedClasses")));

    // add the Parser Class edit field
    temp.add(parserClassName = new EComboBox());
    parserClassName.setEditable(true);

    // add the TestFinder Class edit field
    temp.add(testfinderClassName = new EComboBox());
    testfinderClassName.setEditable(true);

    // add the Plugin Class edit field
    JPanel tmp2 = new JPanel(new GridLayout(1,2));
    tmp2.add(new JLabel(Resources.getString("pluginClassName"),SwingConstants.CENTER));
    tmp2.add(pluginClassNames = new EComboBox());
    pluginClassNames.setEditable(true);
    temp.add(tmp2);
    centerPanel.add(temp);

    // add the miscOptions pane
View Full Code Here

TOP

Related Classes of qat.components.EComboBox

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.