X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.graphfile.ontology%2Fsrc%2Forg%2Fsimantics%2Fgraphfile%2Fontology%2FGraphFileResource.java;h=7b38e49e9b72d3838b33a806bea00f52854a0519;hp=cb6cdfba27fcc909cae086f8c9e748b3af9865c6;hb=96bb7ef9cbe42d82eb58306d8f9b62392cc29ba8;hpb=ae5bb63c5c88f6569518fed2a24df86fbd0570ff diff --git a/bundles/org.simantics.graphfile.ontology/src/org/simantics/graphfile/ontology/GraphFileResource.java b/bundles/org.simantics.graphfile.ontology/src/org/simantics/graphfile/ontology/GraphFileResource.java index cb6cdfba2..7b38e49e9 100644 --- a/bundles/org.simantics.graphfile.ontology/src/org/simantics/graphfile/ontology/GraphFileResource.java +++ b/bundles/org.simantics.graphfile.ontology/src/org/simantics/graphfile/ontology/GraphFileResource.java @@ -24,6 +24,8 @@ public class GraphFileResource { public final Resource LastModified; public final Resource LastModified_Inverse; public final Resource PartOfSystemResource; + public final Resource SystemPath; + public final Resource SystemPath_Inverse; public final Resource SystemResource; public static class URIs { @@ -41,6 +43,8 @@ public class GraphFileResource { public static final String LastModified = "http://www.simantics.org/GraphFile-0.1/LastModified"; public static final String LastModified_Inverse = "http://www.simantics.org/GraphFile-0.1/LastModified/Inverse"; public static final String PartOfSystemResource = "http://www.simantics.org/GraphFile-0.1/PartOfSystemResource"; + public static final String SystemPath = "http://www.simantics.org/GraphFile-0.1/SystemPath"; + public static final String SystemPath_Inverse = "http://www.simantics.org/GraphFile-0.1/SystemPath/Inverse"; public static final String SystemResource = "http://www.simantics.org/GraphFile-0.1/SystemResource"; } @@ -68,6 +72,8 @@ public class GraphFileResource { LastModified = getResourceOrNull(graph, URIs.LastModified); LastModified_Inverse = getResourceOrNull(graph, URIs.LastModified_Inverse); PartOfSystemResource = getResourceOrNull(graph, URIs.PartOfSystemResource); + SystemPath = getResourceOrNull(graph, URIs.SystemPath); + SystemPath_Inverse = getResourceOrNull(graph, URIs.SystemPath_Inverse); SystemResource = getResourceOrNull(graph, URIs.SystemResource); }