]> gerrit.simantics Code Review - simantics/3d.git/commitdiff
Updated Plant3D ontology class 15/3415/1
authorReino Ruusu <reino.ruusu@semantum.fi>
Fri, 25 Oct 2019 14:44:51 +0000 (17:44 +0300)
committerReino Ruusu <reino.ruusu@semantum.fi>
Fri, 25 Oct 2019 14:44:51 +0000 (17:44 +0300)
Due to ontology modification in
If023250f7762fcd7bc113fec462f285184bf9608

gitlab #29

Change-Id: I299c381f8eee85e65a6d0f70f7e2eb8860789832

org.simantics.plant3d.ontology/src/org/simantics/plant3d/ontology/Plant3D.java

index 41b1aa592bcf04baa42b987814ef432ed5a242ad..69603a5230019f76bb407d53cf7528c50ced2569 100644 (file)
@@ -42,6 +42,8 @@ public class Plant3D {
     public final Resource Builtin_VerticalTank;
     public final Resource Builtin_VerticalTankGeometryProvider;
     public final Resource CodeComponent;
+    public final Resource ComponentLibrary;
+    public final Resource ComponentLibrary_contains;
     public final Resource Connects;
     public final Resource DualConnectedComponent;
     public final Resource EndComponent;
@@ -155,6 +157,8 @@ public class Plant3D {
         public static final String Builtin_VerticalTank = "http://www.simantics.org/Plant3D-0.1/Builtin/VerticalTank";
         public static final String Builtin_VerticalTankGeometryProvider = "http://www.simantics.org/Plant3D-0.1/Builtin/VerticalTankGeometryProvider";
         public static final String CodeComponent = "http://www.simantics.org/Plant3D-0.1/CodeComponent";
+        public static final String ComponentLibrary = "http://www.simantics.org/Plant3D-0.1/ComponentLibrary";
+        public static final String ComponentLibrary_contains = "http://www.simantics.org/Plant3D-0.1/ComponentLibrary/contains";
         public static final String Connects = "http://www.simantics.org/Plant3D-0.1/Connects";
         public static final String DualConnectedComponent = "http://www.simantics.org/Plant3D-0.1/DualConnectedComponent";
         public static final String EndComponent = "http://www.simantics.org/Plant3D-0.1/EndComponent";
@@ -278,6 +282,8 @@ public class Plant3D {
         Builtin_VerticalTank = getResourceOrNull(graph, URIs.Builtin_VerticalTank);
         Builtin_VerticalTankGeometryProvider = getResourceOrNull(graph, URIs.Builtin_VerticalTankGeometryProvider);
         CodeComponent = getResourceOrNull(graph, URIs.CodeComponent);
+        ComponentLibrary = getResourceOrNull(graph, URIs.ComponentLibrary);
+        ComponentLibrary_contains = getResourceOrNull(graph, URIs.ComponentLibrary_contains);
         Connects = getResourceOrNull(graph, URIs.Connects);
         DualConnectedComponent = getResourceOrNull(graph, URIs.DualConnectedComponent);
         EndComponent = getResourceOrNull(graph, URIs.EndComponent);