Exemplo n.º 1
0
 public void toString(UnitPrinter up) {
   up.startValueBox(this);
   value.toString(up);
   up.endValueBox(this);
 }
Exemplo n.º 2
0
 public void setValue(Value value) {
   if (canContainValue(value)) this.value = value;
   else
     throw new RuntimeException(
         "Box " + this + " cannot contain value: " + value + "(" + value.getClass() + ")");
 }