Example #1
0
 @Override
 public String toString() {
   String tmp = decision.toString();
   int padd = 12 - tmp.length();
   for (int i = 0; i < padd; ++i) tmp += " ";
   return tmp;
 }
Example #2
0
 public static DecisionNode getRandom() {
   return new DecisionNode(Decision.getRandom());
 }