org.semanticweb.owlapi.model
Interface OWLSubClassOfAxiom

All Superinterfaces:
java.lang.Comparable<OWLObject>, OWLAxiom, OWLClassAxiom, OWLLogicalAxiom, OWLObject
All Known Implementing Classes:
OWLSubClassOfAxiomImpl

public interface OWLSubClassOfAxiom
extends OWLClassAxiom

Author: Matthew Horridge
The University Of Manchester
Bio-Health Informatics Group Date: 24-Oct-2006

Represents an SubClassOf axiom in the OWL 2 Specification.


Method Summary
 OWLSubClassOfAxiom getAxiomWithoutAnnotations()
          Gets an axiom that is structurally equivalent to this axiom without annotations.
 OWLClassExpression getSubClass()
          Gets the subclass in this axiom
 OWLClassExpression getSuperClass()
          Gets the superclass in this axiom.
 boolean isGCI()
          Determines if this subclass axiom has a subclass that is anonymous.
 
Methods inherited from interface org.semanticweb.owlapi.model.OWLAxiom
accept, accept, equalsIgnoreAnnotations, getAnnotatedAxiom, getAnnotations, getAnnotations, getAxiomType, getNNF, isAnnotated, isLogicalAxiom, isOfType, isOfType
 
Methods inherited from interface org.semanticweb.owlapi.model.OWLObject
accept, accept, getClassesInSignature, getDataPropertiesInSignature, getDatatypesInSignature, getIndividualsInSignature, getNestedClassExpressions, getObjectPropertiesInSignature, getSignature, isBottomEntity, isTopEntity
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getSubClass

OWLClassExpression getSubClass()
Gets the subclass in this axiom

Returns:
The class expression that represents the subclass in this axiom.

getSuperClass

OWLClassExpression getSuperClass()
Gets the superclass in this axiom.

Returns:
The class expression that represents the superclass in this axiom.

isGCI

boolean isGCI()
Determines if this subclass axiom has a subclass that is anonymous. (if the subclass is anonymous then the subclass axiom is known as a General Concept Inclusion - GCI).

Returns:
true if this axiom is a GCI, other wise false.

getAxiomWithoutAnnotations

OWLSubClassOfAxiom getAxiomWithoutAnnotations()
Description copied from interface: OWLAxiom
Gets an axiom that is structurally equivalent to this axiom without annotations. This essentially returns a version of this axiom stripped of any annotations

Specified by:
getAxiomWithoutAnnotations in interface OWLAxiom
Returns:
The annotationless version of this axiom