Examples of sizeOfWellList()


Examples of ome.xml.model.Plate.sizeOfWellList()

        ome.addPlate(plate);
      }
      Well well = null;
      int row = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".indexOf(d.well.substring(0, 1).toUpperCase());
      int col = Integer.valueOf(d.well.substring(1));
      for (int i=0; i<plate.sizeOfWellList(); i++) {
        final Well qWell = plate.getWell(i);
        if ((qWell.getRow().equals(row)) && (qWell.getColumn().equals(col))) {
          well = qWell;
          break;
        }
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.