package org.simantics.diagram.synchronization.graph.layer; import org.simantics.db.ReadGraph; import org.simantics.db.Resource; import org.simantics.db.WriteGraph; import org.simantics.db.exception.DatabaseException; public interface IGraphLayerUtil { GraphLayer loadLayer(ReadGraph graph, Resource layer) throws DatabaseException; GraphLayer createLayer(WriteGraph graph, String newName, boolean b) throws DatabaseException; }