Package org.ldv.sio.getap.app

Examples of org.ldv.sio.getap.app.TypeStats


  }

  private static final class AccTypeStatsMapper implements
      RowMapper<TypeStats> {
    public TypeStats mapRow(ResultSet rs, int rowNum) throws SQLException {
      TypeStats typeStats = new TypeStats();
      typeStats.setLibelle(rs.getString("libelle"));
      typeStats.setCountap(rs.getInt("countap"));
      return typeStats;
    }
View Full Code Here

TOP

Related Classes of org.ldv.sio.getap.app.TypeStats

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.