Examples of IngredientList


Examples of mbj.robotdriver.experimentplate.IngredientList

   */
  public void actionPerformed(ActionEvent arg0) {
    // First check if OK
    try {
      parentRobotDriver.setThePlate(PlateFactory.createPlate(parentRobotDriver.rockMakerFile()));
      parentRobotDriver.setUsedIngredients(new IngredientList());
      double maxVolume = Double.valueOf(parentRobotDriver.tecanSettings().getProperty("maxTipVolume"));
      for (Well aWell : parentRobotDriver.thePlate().wellList()) {
        if (aWell.getWaterVolume() > maxVolume) {
          throw new RobotDriverException("You can not pipette more than " + String.valueOf(maxVolume) + ".\n- You Can Not make this screen ");
        }
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.