Esempio n. 1
0
 public Quantity getJudgingTarget(int round) throws ScoreException {
   String targetValue =
       PropertyHelper.indirectPropertyForRound(TARGET_VALUE_PROPNAME, round, props);
   if ("".equals(targetValue)) {
     return getDividend(round);
   }
   return new Quantity(targetValue);
 }