Package uk.ac.bbsrc.tgac.miso.core.data.impl

Examples of uk.ac.bbsrc.tgac.miso.core.data.impl.PlatformImpl


    return e;
  }

  public class PlatformMapper implements RowMapper<Platform> {
    public Platform mapRow(ResultSet rs, int rowNum) throws SQLException {
      Platform p = new PlatformImpl();
      p.setPlatformId(rs.getLong("platformId"));
      p.setPlatformType(PlatformType.get(rs.getString("name")));
      p.setDescription(rs.getString("description"));
      p.setInstrumentModel(rs.getString("instrumentModel"));
      p.setNumContainers(rs.getInt("numContainers"));
      return p;
    }
View Full Code Here

TOP

Related Classes of uk.ac.bbsrc.tgac.miso.core.data.impl.PlatformImpl

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.