001/**
002 * 
003 */
004package org.dllearner.algorithms.isle.textretrieval;
005
006import org.dllearner.kb.OWLAPIOntology;
007import org.semanticweb.owlapi.model.OWLOntology;
008import org.semanticweb.owlapi.vocab.OWLRDFVocabulary;
009
010import uk.ac.manchester.cs.owl.owlapi.OWLDataFactoryImpl;
011
012/**
013 * @author Lorenz Buehmann
014 *
015 */
016public class RDFSCommentEntityTextRetriever extends AnnotationEntityTextRetriever{
017        
018        public RDFSCommentEntityTextRetriever(OWLOntology ontology) {
019                super(ontology, new OWLDataFactoryImpl().getOWLAnnotationProperty(OWLRDFVocabulary.RDFS_COMMENT.getIRI()));
020        }
021        
022        public RDFSCommentEntityTextRetriever(OWLAPIOntology ontology) {
023                super(ontology, new OWLDataFactoryImpl().getOWLAnnotationProperty(OWLRDFVocabulary.RDFS_COMMENT.getIRI()));
024        }
025}