Package ke.go.moh.oec.reception.gui.helper

Examples of ke.go.moh.oec.reception.gui.helper.SuccessSignal


            }
        }
    }

    private boolean authenticateAdmin() {
        SuccessSignal successSignal = new SuccessSignal();
        AdminAuthenticatorDialog aad;
        try {
            aad = new AdminAuthenticatorDialog(this.getFrame(), true, successSignal);
            aad.setLocationRelativeTo(this.getFrame());
            aad.setVisible(true);
        } catch (PersistenceManagerException ex) {
            showErrorMessage(ex.getMessage(), addUsersMenuItem);
        }
        return successSignal.isSuccessful();
    }
View Full Code Here

TOP

Related Classes of ke.go.moh.oec.reception.gui.helper.SuccessSignal

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.