/* * TransitivePropertyImpl.java * * Niraj Aswani, 09/March/07 * * $Id: TransitivePropertyImpl.java 17080 2013-11-12 19:29:34Z markagreenwood $ */ package gate.creole.ontology.impl; import gate.creole.ontology.OURI; import gate.creole.ontology.Ontology; import gate.creole.ontology.TransitiveProperty; /** * Implementation of the TransitiveProperty * @author niraj * */ public class TransitivePropertyImpl extends ObjectPropertyImpl implements TransitiveProperty { /** * Constructor * @param aURI * @param ontology * @param owlimPort */ public TransitivePropertyImpl(OURI aURI, Ontology ontology, OntologyService owlimPort) { super(aURI, ontology, owlimPort); } }