1 package org.simantics.db.layer0;
5 import org.simantics.simulator.variable.exceptions.NodeManagerException;
7 public interface StandardEngine<Node> {
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);