Examples of ComboBoxActionListener


Examples of org.bmdrc.gui.listeners.ComboBoxActionListener

        theNmrComboBox.setMaximumRowCount(this.MAXIMUM_ROW_COUNT);
        theNmrComboBox.setMaximumSize(new Dimension(Integer.MAX_VALUE, this.MAXIMUM_COMBO_BOX_HEIGHT));
        this.setFrame().setComboBox().removeAll();
        this.setFrame().setComboBox().add(theNmrComboBox);
        this.setFrame().setSelectedCalculationMethod(this.DB_SEARCH_USING_2D_NMR);
        theNmrComboBox.addItemListener(new ComboBoxActionListener(this.getFrame()));
        theNmrComboBox.setSelectedIndex(this.FIRST_INDEX);
        theNmrComboBox.setName("Nmr");
    }
View Full Code Here

Examples of org.bmdrc.gui.listeners.ComboBoxActionListener

            this.setFrame().setComboBox().removeAll();
        } else {
            this.setFrame().setComboBox(Box.createHorizontalBox());
        }
        this.setFrame().setComboBox().add(theEtcComboBox);
        theEtcComboBox.addItemListener(new ComboBoxActionListener(this.getFrame()));
        theEtcComboBox.setSelectedIndex(this.FIRST_INDEX);
        theEtcComboBox.setName("Etc");
    }
View Full Code Here

Examples of org.bmdrc.gui.listeners.ComboBoxActionListener

        theMassComboBox.setMaximumRowCount(this.MAXIMUM_ROW_COUNT);
        theMassComboBox.setMaximumSize(new Dimension(Integer.MAX_VALUE, this.MAXIMUM_COMBO_BOX_HEIGHT));
        this.setFrame().setComboBox().removeAll();
        this.setFrame().setComboBox().add(theMassComboBox);
        theMassComboBox.setSelectedIndex(this.FIRST_INDEX);
        theMassComboBox.addItemListener(new ComboBoxActionListener(this.getFrame()));
        theMassComboBox.setName("Mass");
        theMassComboBox.setSize(Integer.MAX_VALUE, this.MAXIMUM_COMBO_BOX_HEIGHT);

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.