Package com.compomics.util.gui.error_handlers.notification

Examples of com.compomics.util.gui.error_handlers.notification.NotesDialog


     * Open the Notes Dialog.
     *
     * @param evt
     */
    private void notesButtonMouseReleased(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_notesButtonMouseReleased
        NotesDialog notesDialog = new NotesDialog(this, false, currentNotes);
        notesDialog.setLocation(PeptideShakerGUI.this.getWidth() - notesDialog.getWidth() - 25 + PeptideShakerGUI.this.getX(),
                PeptideShakerGUI.this.getHeight() - notesDialog.getHeight() - 25 + PeptideShakerGUI.this.getY());
        notesDialog.setVisible(true);
        currentNotes = new ArrayList<String>();
        updateNotesNotificationCounter();
    }//GEN-LAST:event_notesButtonMouseReleased
View Full Code Here

TOP

Related Classes of com.compomics.util.gui.error_handlers.notification.NotesDialog

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.