Package eu.isas.peptideshaker.gui.pride.annotationdialogs

Examples of eu.isas.peptideshaker.gui.pride.annotationdialogs.NewReferenceGroupDialog


        if (referenceGroupsJComboBox.getSelectedIndex() == 0) {
            editReferencesJButton.setEnabled(false);
        } else if (referenceGroupsJComboBox.getSelectedIndex() == referenceGroupsJComboBox.getItemCount() - 1) {
            editReferencesJButton.setEnabled(false);
            referenceGroupsJComboBox.setSelectedIndex(0);
            new NewReferenceGroupDialog(this, true);
        } else {
            editReferencesJButton.setEnabled(true);
        }

        validateInput();
View Full Code Here


        if (tempReferenceGroup == null) {
            tempReferenceGroup = new ReferenceGroup(new ArrayList<Reference>(), "");
        }

        new NewReferenceGroupDialog(this, true, tempReferenceGroup);
    }//GEN-LAST:event_editReferencesJButtonActionPerformed
View Full Code Here

TOP

Related Classes of eu.isas.peptideshaker.gui.pride.annotationdialogs.NewReferenceGroupDialog

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.