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

Examples of uk.ac.bbsrc.tgac.miso.core.data.PoolQC


          log.debug("Cache hit on map for PoolQC " + id);
          return (PoolQC)element.getObjectValue();
        }
      }

      PoolQC s = dataObjectFactory.getPoolQC();
      s.setId(id);
      s.setQcCreator(rs.getString("qcUserName"));
      s.setQcDate(rs.getDate("qcDate"));
      s.setResults(rs.getDouble("results"));

      try {
        s.setQcType(getPoolQcTypeById(rs.getLong("qcMethod")));
        if (!isLazy()) {
          s.setPool(poolDAO.get(rs.getLong("pool_poolId")));
        }
      }
      catch (IOException e) {
        e.printStackTrace();
      }
View Full Code Here

TOP

Related Classes of uk.ac.bbsrc.tgac.miso.core.data.PoolQC

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.