package org.simantics.spreadsheet.common.cell; import org.simantics.db.WriteGraph; import org.simantics.db.exception.DatabaseException; import org.simantics.db.layer0.variable.Variable; public interface VariableCellEditor { void edit(WriteGraph graph, Variable cell, String text) throws DatabaseException; void copy(WriteGraph graph, Variable cell, String location) throws DatabaseException; }