Package org.apache.jorphan.gui

Examples of org.apache.jorphan.gui.JLabeledChoice$AddListener


    wsdlButton.addActionListener(this);

    // Web Methods
    JPanel listPanel = new JPanel();
    JLabel selectLabel = new JLabel("Web Methods");
    wsdlMethods = new JLabeledChoice();
    mainPanel.add(listPanel);
    listPanel.add(selectLabel);
    listPanel.add(wsdlMethods);
    listPanel.add(selectButton);
    selectButton.addActionListener(this);
View Full Code Here


        Class cl = Class.forName((String) iter.next());
        functionNames[count] = ((Function) cl.newInstance()).getReferenceKey();
        functionMap.put(functionNames[count], cl);
        count++;
      }
      functionList = new JLabeledChoice(JMeterUtils.getResString("choose_function"), functionNames);
      functionList.addChangeListener(this);
    } catch (IOException e) {
    } catch (ClassNotFoundException e) {
    } catch (InstantiationException e) {
    } catch (IllegalAccessException e) {
View Full Code Here

TOP

Related Classes of org.apache.jorphan.gui.JLabeledChoice$AddListener

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.