> https://github.com/redplanetlabs/specter/tree/master/src
> MutableCell.Java. 8 years ago
package com.rpl.specter; public class MutableCell { private Object o; public MutableCell(Object o) { this.o = o; } public Object get() { return o; } public void set(Object o) { this.o = o; } }
Or did you mean something else? In which case please elaborate.
> https://github.com/redplanetlabs/specter/tree/master/src
> MutableCell.Java. 8 years ago
Behold the power!