org.semanticweb.owlapi.model
Interface OWLNamedObject

All Superinterfaces:
java.lang.Comparable<OWLObject>, OWLObject
All Known Subinterfaces:
OWLAnnotationProperty, OWLClass, OWLDataProperty, OWLDatatype, OWLEntity, OWLLogicalEntity, OWLNamedIndividual, OWLObjectProperty, OWLProperty<R,P>
All Known Implementing Classes:
OWLAnnotationPropertyImpl, OWLClassImpl, OWLDataPropertyImpl, OWLDatatypeImpl, OWLNamedIndividualImpl, OWLObjectPropertyImpl

public interface OWLNamedObject
extends OWLObject

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

Represents a named object for example, class, property, ontology etc. - i.e. anything that has an IRI as its name.


Method Summary
 void accept(OWLNamedObjectVisitor visitor)
           
 IRI getIRI()
          Gets the IRI of this object
 
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

getIRI

IRI getIRI()
Gets the IRI of this object

Returns:
The IRI of this object

accept

void accept(OWLNamedObjectVisitor visitor)