Package br.com.visualmidia.persistence.add

Examples of br.com.visualmidia.persistence.add.AddOccurrenceToStudent


    protected void buttonPressed(int buttonId) {
        if (buttonId == OK) {
            if (!occurrenceText.getText().equals("")){
                if(occurrenceGroup == null){
                    try {
                        system.execute(new AddOccurrenceToStudent(studentId, system.getLogged(), new GDDate(), occurrenceText.getText()));
                    } catch (TransactionDateException e) {
                setErrorMessage(MessageConstants.TRANSACTION_DATE_EXCEPTION);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
View Full Code Here

TOP

Related Classes of br.com.visualmidia.persistence.add.AddOccurrenceToStudent

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.