for (int col=0; col < theTargetHolder.xSize(); col++) {
for (int line=0; line < theTargetHolder.ySize(); line++) {
Well aWell = theTargetHolder.getWell(col, line);
if (aWell.needIngredient(theIngredient)) {
String theVolume = String.valueOf(aWell.getVolume(theIngredient));
outDispInfo = new DispenseInfo(tipNum, theTargetHolder, aWell.column(), aWell.line(),
theVolume, theIngredient.chemical().pipettingInfo().liquidClass().name());
return outDispInfo;
}
}
}