]> gerrit.simantics Code Review - simantics/platform.git/blob - IGraphLayerUtil.java
9b0f8fb1454802f47dec32c37cf8f3ebfec10ca3
[simantics/platform.git] / IGraphLayerUtil.java
1 package org.simantics.diagram.synchronization.graph.layer;
2
3 import org.simantics.db.ReadGraph;
4 import org.simantics.db.Resource;
5 import org.simantics.db.WriteGraph;
6 import org.simantics.db.exception.DatabaseException;
7
8 public interface IGraphLayerUtil {
9
10     GraphLayer loadLayer(ReadGraph graph, Resource layer) throws DatabaseException;
11
12     GraphLayer createLayer(WriteGraph graph, String newName, boolean b) throws DatabaseException;
13
14 }