Package edu.pitt.ontology

Examples of edu.pitt.ontology.IOntologyError


  public void addVersion(String version) {
    getList(VERSIONS).add(version);
  }

  public void delete() {
    throw new IOntologyError("Read-Only Ontology");
  }
View Full Code Here


    loaded = false;
    concept = null;
  }
 
  public void addDisjointClass(IClass a) {
    throw new IOntologyError("Operation Not Supported");
  }
View Full Code Here

  public void addDisjointClass(IClass a) {
    throw new IOntologyError("Operation Not Supported");
  }

  public void addEquivalentClass(IClass a) {
    throw new IOntologyError("Operation Not Supported")}
View Full Code Here

  public void addEquivalentClass(IClass a) {
    throw new IOntologyError("Operation Not Supported")}

  public void addEquivalentRestriction(IRestriction restriction) {
    throw new IOntologyError("Operation Not Supported");
  }
View Full Code Here

  public void addEquivalentRestriction(IRestriction restriction) {
    throw new IOntologyError("Operation Not Supported");
  }

  public void addNecessaryRestriction(IRestriction restriction) {
    throw new IOntologyError("Operation Not Supported");
  }
View Full Code Here

  public void addNecessaryRestriction(IRestriction restriction) {
    throw new IOntologyError("Operation Not Supported");
  }

  public void addSubClass(IClass child) {
    throw new IOntologyError("Operation Not Supported");
  }
View Full Code Here

  public void addSubClass(IClass child) {
    throw new IOntologyError("Operation Not Supported");
  }

  public void addSuperClass(IClass parent) {
    throw new IOntologyError("Operation Not Supported");
  }
View Full Code Here

  public void addSuperClass(IClass parent) {
    throw new IOntologyError("Operation Not Supported");
  }

  public IInstance createInstance(String name) {
    throw new IOntologyError("Operation Not Supported");
  }
View Full Code Here

  public IInstance createInstance(String name) {
    throw new IOntologyError("Operation Not Supported");
  }

  public IInstance createInstance() {
    throw new IOntologyError("Operation Not Supported");
  }
View Full Code Here

  public IInstance createInstance() {
    throw new IOntologyError("Operation Not Supported");
  }

  public IClass createSubClass(String name) {
    throw new IOntologyError("Operation Not Supported");
  }
View Full Code Here

TOP

Related Classes of edu.pitt.ontology.IOntologyError

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.