Package clips.doctor.profcheckup.checkup

Examples of clips.doctor.profcheckup.checkup.PanelProfcheckupEdit


private void btResultActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btResultActionPerformed
        if (tblProfcheckups.getSelectedRowCount() == 1){
            try {
                ProfcheckupLocal pl = profcheckupLocals.get(tblProfcheckups.getSelectedRowSorted());
                PanelProfcheckupEdit ppe = new PanelProfcheckupEdit(getContainer(), pl);
                getContainer().addNewPage(ppe, null);
            } catch (ClipsException ex) {
                MessageBox.showException(ex);
            }
        }
View Full Code Here

TOP

Related Classes of clips.doctor.profcheckup.checkup.PanelProfcheckupEdit

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.