org.xowl.infra.lang.runtime.NamedIndividual 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 class NamedIndividual implements org.xowl.infra.lang.runtime.Individual, org.xowl.infra.lang.runtime.Interpretation {
//
private static class interpretationOf_impl implements org.xowl.infra.lang.runtime.Interpretation.interpretationOf {
private org.xowl.infra.lang.runtime.NamedIndividual domain;
private org.xowl.infra.lang.runtime.Entity data;
public org.xowl.infra.lang.runtime.Entity get_raw() { return data; }
public org.xowl.infra.lang.runtime.Entity get() { return data; }
private boolean check_card(int modifier) {
int card = modifier + 0;
if (data != null) card++;
return (card >= 0 && card <= 1);
}
@Override public boolean check_contains(org.xowl.infra.lang.runtime.Entity elem) { return (data == elem); }
public boolean simple_check_add(org.xowl.infra.lang.runtime.Entity elem) {
if (check_contains(elem)) return false;
if (!check_card(1)) return false;
return true;
}
public boolean simple_check_remove(org.xowl.infra.lang.runtime.Entity elem) {
if (!check_contains(elem)) return false;
if (!check_card(-1)) return false;
return true;
}
public boolean simple_check_replace(org.xowl.infra.lang.runtime.Entity oldElem, org.xowl.infra.lang.runtime.Entity newElem) {
if (check_contains(newElem)) return false;
if (!check_contains(oldElem)) return false;
return true;
}
public void simple_add(org.xowl.infra.lang.runtime.Entity elem) {
data = elem;
}
public void simple_remove(org.xowl.infra.lang.runtime.Entity elem) {
data = null;
}
private boolean tree_check_add(org.xowl.infra.lang.runtime.Entity elem) {
if (!simple_check_add(elem)) return false;
return true;
}
private boolean tree_check_remove(org.xowl.infra.lang.runtime.Entity elem) {
if (!simple_check_remove(elem)) return false;
return true;
}
private boolean tree_check_replace(org.xowl.infra.lang.runtime.Entity oldElem, org.xowl.infra.lang.runtime.Entity newElem) {
if (!simple_check_replace(oldElem, newElem)) return false;
return true;
}
private void tree_add(org.xowl.infra.lang.runtime.Entity elem) {
simple_add(elem);
}
private void tree_remove(org.xowl.infra.lang.runtime.Entity elem) {
simple_remove(elem);
}
@Override public boolean user_check_add(org.xowl.infra.lang.runtime.Entity elem) {
if (!elem.__getImplOfinterpretedAs().inverse_check_add(domain)) return false;
return tree_check_add(elem);
}
@Override public boolean user_check_remove(org.xowl.infra.lang.runtime.Entity elem) {
if (!elem.__getImplOfinterpretedAs().inverse_check_remove(domain)) return false;
return tree_check_remove(elem);
}
@Override public boolean user_check_replace(org.xowl.infra.lang.runtime.Entity oldElem, org.xowl.infra.lang.runtime.Entity newElem) {
if (!oldElem.__getImplOfinterpretedAs().inverse_check_remove(domain)) return false;
if (!newElem.__getImplOfinterpretedAs().inverse_check_add(domain)) return false;
return tree_check_replace(oldElem, newElem);
}
@Override public void user_add(org.xowl.infra.lang.runtime.Entity elem) {
elem.__getImplOfinterpretedAs().inverse_add(domain);
tree_add(elem);
}
@Override public void user_remove(org.xowl.infra.lang.runtime.Entity elem) {
elem.__getImplOfinterpretedAs().inverse_remove(domain);
tree_remove(elem);
}
@Override public boolean inverse_check_add(org.xowl.infra.lang.runtime.Entity elem) {
return tree_check_add(elem);
}
@Override public boolean inverse_check_remove(org.xowl.infra.lang.runtime.Entity elem) {
return tree_check_remove(elem);
}
@Override public boolean inverse_check_replace(org.xowl.infra.lang.runtime.Entity oldElem, org.xowl.infra.lang.runtime.Entity newElem) {
return tree_check_replace(oldElem, newElem);
}
@Override public void inverse_add(org.xowl.infra.lang.runtime.Entity elem) {
tree_add(elem);
}
@Override public void inverse_remove(org.xowl.infra.lang.runtime.Entity elem) {
tree_remove(elem);
}
public interpretationOf_impl(org.xowl.infra.lang.runtime.NamedIndividual domain) {
this.domain = domain;
}
}
private interpretationOf_impl dataInterpretationOf;
public org.xowl.infra.lang.runtime.Interpretation.interpretationOf __getImplOfinterpretationOf() { return dataInterpretationOf; }
public boolean setInterpretationOf(org.xowl.infra.lang.runtime.Entity elem) {
if (dataInterpretationOf.get() != null) {
if (elem == null) {
if (!dataInterpretationOf.user_check_remove(dataInterpretationOf.get())) return false;
dataInterpretationOf.user_remove(dataInterpretationOf.get());
} else {
if (!dataInterpretationOf.user_check_replace(dataInterpretationOf.get(), elem)) return false;
dataInterpretationOf.user_remove(dataInterpretationOf.get());
dataInterpretationOf.user_add(elem);
}
} else {
if (elem == null) return true;
if (!dataInterpretationOf.user_check_add(elem)) return false;
dataInterpretationOf.user_add(elem);
}
return true;
}
public org.xowl.infra.lang.runtime.Entity getInterpretationOf() { return dataInterpretationOf.get(); }
//
//
private static class classifiedBy_impl implements org.xowl.infra.lang.runtime.Individual.classifiedBy {
private org.xowl.infra.lang.runtime.NamedIndividual domain;
private java.util.List data;
public java.util.Collection get_raw() { return new java.util.ArrayList(data); }
public java.util.Collection get() { return new java.util.ArrayList(data); }
private boolean check_card(int modifier) {
int card = data.size() + 0 + modifier;
return (card >= 0 && card <= 2147483647);
}
@Override public boolean check_contains(org.xowl.infra.lang.runtime.Class elem) { return (data.contains(elem)); }
public boolean simple_check_add(org.xowl.infra.lang.runtime.Class elem) {
if (check_contains(elem)) return false;
if (!check_card(1)) return false;
return true;
}
public boolean simple_check_remove(org.xowl.infra.lang.runtime.Class elem) {
if (!check_contains(elem)) return false;
if (!check_card(-1)) return false;
return true;
}
public boolean simple_check_replace(org.xowl.infra.lang.runtime.Class oldElem, org.xowl.infra.lang.runtime.Class newElem) {
if (check_contains(newElem)) return false;
if (!check_contains(oldElem)) return false;
return true;
}
public void simple_add(org.xowl.infra.lang.runtime.Class elem) {
data.add(elem);
}
public void simple_remove(org.xowl.infra.lang.runtime.Class elem) {
data.remove(elem);
}
private boolean tree_check_add(org.xowl.infra.lang.runtime.Class elem) {
if (!simple_check_add(elem)) return false;
return true;
}
private boolean tree_check_remove(org.xowl.infra.lang.runtime.Class elem) {
if (!simple_check_remove(elem)) return false;
return true;
}
private boolean tree_check_replace(org.xowl.infra.lang.runtime.Class oldElem, org.xowl.infra.lang.runtime.Class newElem) {
if (!simple_check_replace(oldElem, newElem)) return false;
return true;
}
private void tree_add(org.xowl.infra.lang.runtime.Class elem) {
simple_add(elem);
}
private void tree_remove(org.xowl.infra.lang.runtime.Class elem) {
simple_remove(elem);
}
@Override public boolean user_check_add(org.xowl.infra.lang.runtime.Class elem) {
if (!elem.__getImplOfclassifies().inverse_check_add(domain)) return false;
return tree_check_add(elem);
}
@Override public boolean user_check_remove(org.xowl.infra.lang.runtime.Class elem) {
if (!elem.__getImplOfclassifies().inverse_check_remove(domain)) return false;
return tree_check_remove(elem);
}
@Override public boolean user_check_replace(org.xowl.infra.lang.runtime.Class oldElem, org.xowl.infra.lang.runtime.Class newElem) {
if (!oldElem.__getImplOfclassifies().inverse_check_remove(domain)) return false;
if (!newElem.__getImplOfclassifies().inverse_check_add(domain)) return false;
return tree_check_replace(oldElem, newElem);
}
@Override public void user_add(org.xowl.infra.lang.runtime.Class elem) {
elem.__getImplOfclassifies().inverse_add(domain);
tree_add(elem);
}
@Override public void user_remove(org.xowl.infra.lang.runtime.Class elem) {
elem.__getImplOfclassifies().inverse_remove(domain);
tree_remove(elem);
}
@Override public boolean inverse_check_add(org.xowl.infra.lang.runtime.Class elem) {
return tree_check_add(elem);
}
@Override public boolean inverse_check_remove(org.xowl.infra.lang.runtime.Class elem) {
return tree_check_remove(elem);
}
@Override public boolean inverse_check_replace(org.xowl.infra.lang.runtime.Class oldElem, org.xowl.infra.lang.runtime.Class newElem) {
return tree_check_replace(oldElem, newElem);
}
@Override public void inverse_add(org.xowl.infra.lang.runtime.Class elem) {
tree_add(elem);
}
@Override public void inverse_remove(org.xowl.infra.lang.runtime.Class elem) {
tree_remove(elem);
}
public classifiedBy_impl(org.xowl.infra.lang.runtime.NamedIndividual domain) {
this.domain = domain;
this.data = new java.util.ArrayList();
}
}
private classifiedBy_impl dataClassifiedBy;
public org.xowl.infra.lang.runtime.Individual.classifiedBy __getImplOfclassifiedBy() { return dataClassifiedBy; }
public boolean addClassifiedBy(org.xowl.infra.lang.runtime.Class elem) {
if (!dataClassifiedBy.user_check_add(elem)) return false;
dataClassifiedBy.user_add(elem);
return true;
}
public boolean removeClassifiedBy(org.xowl.infra.lang.runtime.Class elem) {
if (!dataClassifiedBy.user_check_remove(elem)) return false;
dataClassifiedBy.user_remove(elem);
return true;
}
public java.util.Collection getAllClassifiedBy() { return dataClassifiedBy.get(); }
//
//
private static class differentFrom_impl implements org.xowl.infra.lang.runtime.Individual.differentFrom {
private org.xowl.infra.lang.runtime.NamedIndividual domain;
private java.util.List data;
public java.util.Collection get_raw() { return new java.util.ArrayList(data); }
public java.util.Collection get() { return new java.util.ArrayList(data); }
private boolean check_card(int modifier) {
int card = data.size() + 0 + modifier;
return (card >= 0 && card <= 2147483647);
}
@Override public boolean check_contains(org.xowl.infra.lang.runtime.Individual elem) { return (data.contains(elem)); }
public boolean simple_check_add(org.xowl.infra.lang.runtime.Individual elem) {
if (check_contains(elem)) return false;
if (!check_card(1)) return false;
return true;
}
public boolean simple_check_remove(org.xowl.infra.lang.runtime.Individual elem) {
if (!check_contains(elem)) return false;
if (!check_card(-1)) return false;
return true;
}
public boolean simple_check_replace(org.xowl.infra.lang.runtime.Individual oldElem, org.xowl.infra.lang.runtime.Individual newElem) {
if (check_contains(newElem)) return false;
if (!check_contains(oldElem)) return false;
return true;
}
public void simple_add(org.xowl.infra.lang.runtime.Individual elem) {
data.add(elem);
}
public void simple_remove(org.xowl.infra.lang.runtime.Individual elem) {
data.remove(elem);
}
private boolean tree_check_add(org.xowl.infra.lang.runtime.Individual elem) {
if (!simple_check_add(elem)) return false;
return true;
}
private boolean tree_check_remove(org.xowl.infra.lang.runtime.Individual elem) {
if (!simple_check_remove(elem)) return false;
return true;
}
private boolean tree_check_replace(org.xowl.infra.lang.runtime.Individual oldElem, org.xowl.infra.lang.runtime.Individual newElem) {
if (!simple_check_replace(oldElem, newElem)) return false;
return true;
}
private void tree_add(org.xowl.infra.lang.runtime.Individual elem) {
simple_add(elem);
}
private void tree_remove(org.xowl.infra.lang.runtime.Individual elem) {
simple_remove(elem);
}
@Override public boolean user_check_add(org.xowl.infra.lang.runtime.Individual elem) {
if (!elem.__getImplOfdifferentFrom().inverse_check_add(domain)) return false;
return tree_check_add(elem);
}
@Override public boolean user_check_remove(org.xowl.infra.lang.runtime.Individual elem) {
if (!elem.__getImplOfdifferentFrom().inverse_check_remove(domain)) return false;
return tree_check_remove(elem);
}
@Override public boolean user_check_replace(org.xowl.infra.lang.runtime.Individual oldElem, org.xowl.infra.lang.runtime.Individual newElem) {
if (!oldElem.__getImplOfdifferentFrom().inverse_check_remove(domain)) return false;
if (!newElem.__getImplOfdifferentFrom().inverse_check_add(domain)) return false;
return tree_check_replace(oldElem, newElem);
}
@Override public void user_add(org.xowl.infra.lang.runtime.Individual elem) {
elem.__getImplOfdifferentFrom().inverse_add(domain);
tree_add(elem);
}
@Override public void user_remove(org.xowl.infra.lang.runtime.Individual elem) {
elem.__getImplOfdifferentFrom().inverse_remove(domain);
tree_remove(elem);
}
@Override public boolean inverse_check_add(org.xowl.infra.lang.runtime.Individual elem) {
return tree_check_add(elem);
}
@Override public boolean inverse_check_remove(org.xowl.infra.lang.runtime.Individual elem) {
return tree_check_remove(elem);
}
@Override public boolean inverse_check_replace(org.xowl.infra.lang.runtime.Individual oldElem, org.xowl.infra.lang.runtime.Individual newElem) {
return tree_check_replace(oldElem, newElem);
}
@Override public void inverse_add(org.xowl.infra.lang.runtime.Individual elem) {
tree_add(elem);
}
@Override public void inverse_remove(org.xowl.infra.lang.runtime.Individual elem) {
tree_remove(elem);
}
public differentFrom_impl(org.xowl.infra.lang.runtime.NamedIndividual domain) {
this.domain = domain;
this.data = new java.util.ArrayList();
}
}
private differentFrom_impl dataDifferentFrom;
public org.xowl.infra.lang.runtime.Individual.differentFrom __getImplOfdifferentFrom() { return dataDifferentFrom; }
public boolean addDifferentFrom(org.xowl.infra.lang.runtime.Individual elem) {
if (!dataDifferentFrom.user_check_add(elem)) return false;
dataDifferentFrom.user_add(elem);
return true;
}
public boolean removeDifferentFrom(org.xowl.infra.lang.runtime.Individual elem) {
if (!dataDifferentFrom.user_check_remove(elem)) return false;
dataDifferentFrom.user_remove(elem);
return true;
}
public java.util.Collection getAllDifferentFrom() { return dataDifferentFrom.get(); }
//
//
private static class asserts_impl implements org.xowl.infra.lang.runtime.Individual.asserts {
private org.xowl.infra.lang.runtime.NamedIndividual domain;
private java.util.List data;
public java.util.Collection get_raw() { return new java.util.ArrayList(data); }
public java.util.Collection get() { return new java.util.ArrayList(data); }
private boolean check_card(int modifier) {
int card = data.size() + 0 + modifier;
return (card >= 0 && card <= 2147483647);
}
@Override public boolean check_contains(org.xowl.infra.lang.runtime.PropertyAssertion elem) { return (data.contains(elem)); }
public boolean simple_check_add(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
if (check_contains(elem)) return false;
if (!check_card(1)) return false;
return true;
}
public boolean simple_check_remove(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
if (!check_contains(elem)) return false;
if (!check_card(-1)) return false;
return true;
}
public boolean simple_check_replace(org.xowl.infra.lang.runtime.PropertyAssertion oldElem, org.xowl.infra.lang.runtime.PropertyAssertion newElem) {
if (check_contains(newElem)) return false;
if (!check_contains(oldElem)) return false;
return true;
}
public void simple_add(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
data.add(elem);
}
public void simple_remove(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
data.remove(elem);
}
private boolean tree_check_add(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
if (!simple_check_add(elem)) return false;
return true;
}
private boolean tree_check_remove(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
if (!simple_check_remove(elem)) return false;
return true;
}
private boolean tree_check_replace(org.xowl.infra.lang.runtime.PropertyAssertion oldElem, org.xowl.infra.lang.runtime.PropertyAssertion newElem) {
if (!simple_check_replace(oldElem, newElem)) return false;
return true;
}
private void tree_add(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
simple_add(elem);
}
private void tree_remove(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
simple_remove(elem);
}
@Override public boolean user_check_add(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
return tree_check_add(elem);
}
@Override public boolean user_check_remove(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
return tree_check_remove(elem);
}
@Override public boolean user_check_replace(org.xowl.infra.lang.runtime.PropertyAssertion oldElem, org.xowl.infra.lang.runtime.PropertyAssertion newElem) {
return tree_check_replace(oldElem, newElem);
}
@Override public void user_add(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
tree_add(elem);
}
@Override public void user_remove(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
tree_remove(elem);
}
@Override public boolean inverse_check_add(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
return tree_check_add(elem);
}
@Override public boolean inverse_check_remove(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
return tree_check_remove(elem);
}
@Override public boolean inverse_check_replace(org.xowl.infra.lang.runtime.PropertyAssertion oldElem, org.xowl.infra.lang.runtime.PropertyAssertion newElem) {
return tree_check_replace(oldElem, newElem);
}
@Override public void inverse_add(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
tree_add(elem);
}
@Override public void inverse_remove(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
tree_remove(elem);
}
public asserts_impl(org.xowl.infra.lang.runtime.NamedIndividual domain) {
this.domain = domain;
this.data = new java.util.ArrayList();
}
}
private asserts_impl dataAsserts;
public org.xowl.infra.lang.runtime.Individual.asserts __getImplOfasserts() { return dataAsserts; }
public boolean addAsserts(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
if (!dataAsserts.user_check_add(elem)) return false;
dataAsserts.user_add(elem);
return true;
}
public boolean removeAsserts(org.xowl.infra.lang.runtime.PropertyAssertion elem) {
if (!dataAsserts.user_check_remove(elem)) return false;
dataAsserts.user_remove(elem);
return true;
}
public java.util.Collection getAllAsserts() { return dataAsserts.get(); }
//
//
private static class sameAs_impl implements org.xowl.infra.lang.runtime.Individual.sameAs {
private org.xowl.infra.lang.runtime.NamedIndividual domain;
private java.util.List data;
public java.util.Collection get_raw() { return new java.util.ArrayList(data); }
public java.util.Collection get() { return new java.util.ArrayList(data); }
private boolean check_card(int modifier) {
int card = data.size() + 0 + modifier;
return (card >= 0 && card <= 2147483647);
}
@Override public boolean check_contains(org.xowl.infra.lang.runtime.Individual elem) { return (data.contains(elem)); }
public boolean simple_check_add(org.xowl.infra.lang.runtime.Individual elem) {
if (check_contains(elem)) return false;
if (!check_card(1)) return false;
return true;
}
public boolean simple_check_remove(org.xowl.infra.lang.runtime.Individual elem) {
if (!check_contains(elem)) return false;
if (!check_card(-1)) return false;
return true;
}
public boolean simple_check_replace(org.xowl.infra.lang.runtime.Individual oldElem, org.xowl.infra.lang.runtime.Individual newElem) {
if (check_contains(newElem)) return false;
if (!check_contains(oldElem)) return false;
return true;
}
public void simple_add(org.xowl.infra.lang.runtime.Individual elem) {
data.add(elem);
}
public void simple_remove(org.xowl.infra.lang.runtime.Individual elem) {
data.remove(elem);
}
private boolean tree_check_add(org.xowl.infra.lang.runtime.Individual elem) {
if (!simple_check_add(elem)) return false;
return true;
}
private boolean tree_check_remove(org.xowl.infra.lang.runtime.Individual elem) {
if (!simple_check_remove(elem)) return false;
return true;
}
private boolean tree_check_replace(org.xowl.infra.lang.runtime.Individual oldElem, org.xowl.infra.lang.runtime.Individual newElem) {
if (!simple_check_replace(oldElem, newElem)) return false;
return true;
}
private void tree_add(org.xowl.infra.lang.runtime.Individual elem) {
simple_add(elem);
}
private void tree_remove(org.xowl.infra.lang.runtime.Individual elem) {
simple_remove(elem);
}
@Override public boolean user_check_add(org.xowl.infra.lang.runtime.Individual elem) {
if (!elem.__getImplOfsameAs().inverse_check_add(domain)) return false;
return tree_check_add(elem);
}
@Override public boolean user_check_remove(org.xowl.infra.lang.runtime.Individual elem) {
if (!elem.__getImplOfsameAs().inverse_check_remove(domain)) return false;
return tree_check_remove(elem);
}
@Override public boolean user_check_replace(org.xowl.infra.lang.runtime.Individual oldElem, org.xowl.infra.lang.runtime.Individual newElem) {
if (!oldElem.__getImplOfsameAs().inverse_check_remove(domain)) return false;
if (!newElem.__getImplOfsameAs().inverse_check_add(domain)) return false;
return tree_check_replace(oldElem, newElem);
}
@Override public void user_add(org.xowl.infra.lang.runtime.Individual elem) {
elem.__getImplOfsameAs().inverse_add(domain);
tree_add(elem);
}
@Override public void user_remove(org.xowl.infra.lang.runtime.Individual elem) {
elem.__getImplOfsameAs().inverse_remove(domain);
tree_remove(elem);
}
@Override public boolean inverse_check_add(org.xowl.infra.lang.runtime.Individual elem) {
return tree_check_add(elem);
}
@Override public boolean inverse_check_remove(org.xowl.infra.lang.runtime.Individual elem) {
return tree_check_remove(elem);
}
@Override public boolean inverse_check_replace(org.xowl.infra.lang.runtime.Individual oldElem, org.xowl.infra.lang.runtime.Individual newElem) {
return tree_check_replace(oldElem, newElem);
}
@Override public void inverse_add(org.xowl.infra.lang.runtime.Individual elem) {
tree_add(elem);
}
@Override public void inverse_remove(org.xowl.infra.lang.runtime.Individual elem) {
tree_remove(elem);
}
public sameAs_impl(org.xowl.infra.lang.runtime.NamedIndividual domain) {
this.domain = domain;
this.data = new java.util.ArrayList();
}
}
private sameAs_impl dataSameAs;
public org.xowl.infra.lang.runtime.Individual.sameAs __getImplOfsameAs() { return dataSameAs; }
public boolean addSameAs(org.xowl.infra.lang.runtime.Individual elem) {
if (!dataSameAs.user_check_add(elem)) return false;
dataSameAs.user_add(elem);
return true;
}
public boolean removeSameAs(org.xowl.infra.lang.runtime.Individual elem) {
if (!dataSameAs.user_check_remove(elem)) return false;
dataSameAs.user_remove(elem);
return true;
}
public java.util.Collection getAllSameAs() { return dataSameAs.get(); }
//
public NamedIndividual() {
dataInterpretationOf = new interpretationOf_impl(this);
dataClassifiedBy = new classifiedBy_impl(this);
dataDifferentFrom = new differentFrom_impl(this);
dataAsserts = new asserts_impl(this);
dataSameAs = new sameAs_impl(this);
}
}