package org.simantics.db.layer0; import java.util.Map; import org.simantics.simulator.variable.exceptions.NodeManagerException; public interface StandardEngine { Object getValue(Node node) throws NodeManagerException; void setValue(Node node, Object value) throws NodeManagerException; String getName(Node node); Map getChildren(Node node); Map getProperties(Node node); }