Package entidades

Examples of entidades.Grados


  public ArrayList<Grados> obtenerGradoPrimaria() throws Exception {
   
    ArrayList<Grados> gradosPrimaria = new ArrayList<Grados>();
   
    for (int i = 1; i < 7; i++) {
      Grados objGrado =  new Grados();
     
      objGrado.setId(i);
      objGrado.setValor(i + "�");
     
      gradosPrimaria.add(objGrado);
    }
   
    return gradosPrimaria;
View Full Code Here


    public ArrayList<Grados> obtenerGradoSecundaria() throws Exception {
   
    ArrayList<Grados> gradosSecundaria = new ArrayList<Grados>();
   
    for (int i = 7; i < 12; i++) {
      Grados objGrado =  new Grados();
     
      objGrado.setId(i);
      objGrado.setValor(i + "�");
     
      gradosSecundaria.add(objGrado);
    }
   
    return gradosSecundaria;
View Full Code Here

TOP

Related Classes of entidades.Grados

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.