(Box b, Dict.Prop<T> what, T value)
| 132 | } |
| 133 | |
| 134 | static public <T> void setTo(Box b, Dict.Prop<T> what, T value) { |
| 135 | T was = b.properties.get(what); |
| 136 | b.properties.put(what, value); |
| 137 | recordSet(b, what, b, value, was); |
| 138 | } |
| 139 | |
| 140 | static public ArrayList<Log> getLog() { |
| 141 | synchronized (log) { |