org.xowl.infra.lang.runtime.Interpretation 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 Interpretation {
//
public static interface interpretationOf {
boolean check_contains(org.xowl.infra.lang.runtime.Entity elem);
boolean user_check_add(org.xowl.infra.lang.runtime.Entity elem);
boolean user_check_remove(org.xowl.infra.lang.runtime.Entity elem);
boolean user_check_replace(org.xowl.infra.lang.runtime.Entity oldElem, org.xowl.infra.lang.runtime.Entity newElem);
void user_add(org.xowl.infra.lang.runtime.Entity elem);
void user_remove(org.xowl.infra.lang.runtime.Entity elem);
boolean inverse_check_add(org.xowl.infra.lang.runtime.Entity elem);
boolean inverse_check_remove(org.xowl.infra.lang.runtime.Entity elem);
boolean inverse_check_replace(org.xowl.infra.lang.runtime.Entity oldElem, org.xowl.infra.lang.runtime.Entity newElem);
void inverse_add(org.xowl.infra.lang.runtime.Entity elem);
void inverse_remove(org.xowl.infra.lang.runtime.Entity elem);
}
interpretationOf __getImplOfinterpretationOf();
boolean setInterpretationOf(org.xowl.infra.lang.runtime.Entity elem);
org.xowl.infra.lang.runtime.Entity getInterpretationOf();
//
}