X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.spreadsheet.common%2Fsrc%2Forg%2Fsimantics%2Fspreadsheet%2Fcommon%2Fcell%2FVariableCellEditor.java;fp=bundles%2Forg.simantics.spreadsheet.common%2Fsrc%2Forg%2Fsimantics%2Fspreadsheet%2Fcommon%2Fcell%2FVariableCellEditor.java;h=411bd06826f807d30b0b2b3182f3f5d27ce90fd5;hp=0000000000000000000000000000000000000000;hb=969bd23cab98a79ca9101af33334000879fb60c5;hpb=866dba5cd5a3929bbeae85991796acb212338a08 diff --git a/bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/cell/VariableCellEditor.java b/bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/cell/VariableCellEditor.java new file mode 100644 index 000000000..411bd0682 --- /dev/null +++ b/bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/cell/VariableCellEditor.java @@ -0,0 +1,12 @@ +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; + +}