\r
if (isUnder(graph, L0, SEL, property, propertiesPredicates)) continue props;\r
\r
+ Boolean hidden = property.getPossiblePropertyValue(graph, SEL.hidden, Bindings.BOOLEAN);\r
+ if(hidden != null && hidden) continue props;\r
+ \r
for(String req : requiredProperties) if(property.getPossibleProperty(graph, req) == null) continue props;\r
\r
for(String req : filteredProperties) if(property.getName(graph).equals(req)) continue props;\r
public final Resource canBeLifted_Inverse;\r
public final Resource getSpecialCategory;\r
public final Resource getSpecialCategory_Inverse;\r
+ public final Resource hidden;\r
+ public final Resource hidden_Inverse;\r
\r
public static class URIs {\r
public static final String AbstractResourceTabContribution = "http://www.simantics.org/SelectionView-1.2/AbstractResourceTabContribution";\r
public static final String canBeLifted_Inverse = "http://www.simantics.org/SelectionView-1.2/canBeLifted/Inverse";\r
public static final String getSpecialCategory = "http://www.simantics.org/SelectionView-1.2/getSpecialCategory";\r
public static final String getSpecialCategory_Inverse = "http://www.simantics.org/SelectionView-1.2/getSpecialCategory/Inverse";\r
+ public static final String hidden = "http://www.simantics.org/SelectionView-1.2/hidden";\r
+ public static final String hidden_Inverse = "http://www.simantics.org/SelectionView-1.2/hidden/Inverse";\r
}\r
\r
public static Resource getResourceOrNull(ReadGraph graph, String uri) {\r
canBeLifted_Inverse = getResourceOrNull(graph, URIs.canBeLifted_Inverse);\r
getSpecialCategory = getResourceOrNull(graph, URIs.getSpecialCategory);\r
getSpecialCategory_Inverse = getResourceOrNull(graph, URIs.getSpecialCategory_Inverse);\r
+ hidden = getResourceOrNull(graph, URIs.hidden);\r
+ hidden_Inverse = getResourceOrNull(graph, URIs.hidden_Inverse);\r
}\r
\r
public static SelectionViewResources getInstance(ReadGraph graph) {\r