Examples of Calendarioacademico


Examples of entidades.Calendarioacademico

   
     List l = em.createQuery("SELECT c FROM Calendarioacademico c").getResultList();
   
     if(l.size()>0){
        for ( int i=0; i < l.size(); i++ ) {
          Calendarioacademico entidad = (Calendarioacademico)l.get(i);
          System.out.println("anio: "+l.get(i));
          anios.add(entidad);
        }
     }
    
View Full Code Here

Examples of entidades.Calendarioacademico

    Calendar c2 = new GregorianCalendar();
    mattempo.setAlumno(nuevoAlumno);
    mattempo.setDtFecMat(new Date(c2.getTimeInMillis()));
    mattempo.setSeccionprogramada(sbuscada);
    //aki
    Calendarioacademico calendatempo=new Calendarioacademico();
    calendatempo.setStrCodcalendario("2012");
    mattempo.setCalendarioacademico(calendatempo);
   
    try {
      for (Method m : nuevoAlumno.getClass().getMethods()){
        if((m.getName().startsWith("getStr"))||(m.getName().startsWith("getInt"))){
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.