module cell; behavior Cell { Object content; Cell(Object initialContent){ content = initialContent; } Object get(){ return content; } void set(Object newContent){ content = newContent; } }