Package br.com.visualmidia.ui.dialog

Examples of br.com.visualmidia.ui.dialog.RegistrationParcelPaymentDialog


        new RegisterMachineParcelPayDialog(getParent().getShell(),
            registration, parcelId).open();
      } else {
        windowControl.openRegistrationControlCenter(registration
            .getStudent().getId(), registrationId);
        new RegistrationParcelPaymentDialog(getParent().getShell(),
            registrationId, parcelId).open();
      }
    } catch (Exception e) {
      logger.error("GetRegistration Exception: ", e);
    }
View Full Code Here


  private void parcelsClick() {
    if (!((RegistrationControlCenter) controlCenter).getPersonName().equals("")) {
      TableItem[] item = registrationTable.getSelection();
      if (item.length > 0) {
        new RegistrationParcelPaymentDialog(getShell(), item[0].getText()).open();
      } else {
        ((RegistrationControlCenter) controlCenter).setErrorMessage("Voc� deve selecionar uma matricula para visualizar suas parcelas.");
      }
    } else {
      ((RegistrationControlCenter) controlCenter).setErrorMessage(ERROR_MESSAGE);
View Full Code Here

TOP

Related Classes of br.com.visualmidia.ui.dialog.RegistrationParcelPaymentDialog

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.