Package br.com.procempa.modus.services

Examples of br.com.procempa.modus.services.ValidationList


          .setLookAndFeel("com.jgoodies.looks.plastic.PlasticXPLookAndFeel");
    } catch (Exception e) {
      // Likely PlasticXP is not in the class path; ignore.
   
   
    ValidationList vl = new ValidationList();
    vl.add(new Validation("Informe o nome."));
    vl.add(new Validation("Informe a idade."));
    ValidationView.show(vl);
    System.exit(0);
  }
View Full Code Here


import junit.framework.TestCase;

public class ValidationListTest extends TestCase {
 
  public void testAddValidation() {
    ValidationList v = new ValidationList();
    v.add(new Validation("Informe o R�tulo."));
   
    assertTrue(v.getMessages().size() == 1);
  }
View Full Code Here

TOP

Related Classes of br.com.procempa.modus.services.ValidationList

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.