]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/cell/VariableCellEditor.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet.common / src / org / simantics / spreadsheet / common / cell / VariableCellEditor.java
1 package org.simantics.spreadsheet.common.cell;
2
3 import org.simantics.db.WriteGraph;
4 import org.simantics.db.exception.DatabaseException;
5 import org.simantics.db.layer0.variable.Variable;
6
7 public interface VariableCellEditor {
8
9         void edit(WriteGraph graph, Variable cell, String text) throws DatabaseException;
10         void copy(WriteGraph graph, Variable cell, String location) throws DatabaseException;
11         
12 }