]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/StandardEngine.java
Layer0Utils.addL0Identifier to prevent possible differentiation of code
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / StandardEngine.java
1 package org.simantics.db.layer0;
2
3 import java.util.Map;
4
5 import org.simantics.simulator.variable.exceptions.NodeManagerException;
6
7 public interface StandardEngine<Node> {
8
9         Object getValue(Node node) throws NodeManagerException;
10         void setValue(Node node, Object value) throws NodeManagerException;
11         String getName(Node node);
12         Map<String,Node> getChildren(Node node);
13         Map<String,Node> getProperties(Node node);
14         
15 }