org.xowl.infra.lang.runtime.NAryDataPropertyRestriction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xowl-lang Show documentation
Show all versions of xowl-lang Show documentation
Java implementation of the xOWL language concepts
/* This file has been generated by:
xOWL Code Generator
*/
package org.xowl.infra.lang.runtime;
public interface NAryDataPropertyRestriction extends org.xowl.infra.lang.runtime.ClassRestriction, org.xowl.infra.lang.runtime.DataCardinalityRestriction_OR_NAryDataPropertyRestriction {
//
public static interface dataProperties {
boolean check_contains(org.xowl.infra.lang.runtime.DataProperty elem);
boolean user_check_add(org.xowl.infra.lang.runtime.DataProperty elem);
boolean user_check_remove(org.xowl.infra.lang.runtime.DataProperty elem);
boolean user_check_replace(org.xowl.infra.lang.runtime.DataProperty oldElem, org.xowl.infra.lang.runtime.DataProperty newElem);
void user_add(org.xowl.infra.lang.runtime.DataProperty elem);
void user_remove(org.xowl.infra.lang.runtime.DataProperty elem);
boolean inverse_check_add(org.xowl.infra.lang.runtime.DataProperty elem);
boolean inverse_check_remove(org.xowl.infra.lang.runtime.DataProperty elem);
boolean inverse_check_replace(org.xowl.infra.lang.runtime.DataProperty oldElem, org.xowl.infra.lang.runtime.DataProperty newElem);
void inverse_add(org.xowl.infra.lang.runtime.DataProperty elem);
void inverse_remove(org.xowl.infra.lang.runtime.DataProperty elem);
}
dataProperties __getImplOfdataProperties();
boolean addDataProperties(org.xowl.infra.lang.runtime.DataProperty elem);
boolean removeDataProperties(org.xowl.infra.lang.runtime.DataProperty elem);
java.util.Collection getAllDataProperties();
//
}