org.semanticweb.owl.model
Interface OWLNamedObject

All Superinterfaces:
java.lang.Comparable<OWLObject>, OWLObject
All Known Subinterfaces:
OWLAnonymousIndividual, OWLClass, OWLDataProperty, OWLDataType, OWLEntity, OWLIndividual, OWLMutableOntology, OWLObjectProperty, OWLOntology, OWLProperty<P,R>

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 a URI as its name.


Method Summary
 void accept(OWLNamedObjectVisitor visitor)
           
 java.net.URI getURI()
          Gets the name of this object.
 
Methods inherited from interface org.semanticweb.owl.model.OWLObject
accept, accept
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getURI

java.net.URI getURI()
Gets the name of this object.

Returns:
A URI that represents the name of the object

accept

void accept(OWLNamedObjectVisitor visitor)