Tabnine Logo
OWLDataFactory.getDeprecatedOWLAnnotationAssertionAxiom
Code IndexAdd Tabnine to your IDE (free)

How to use
getDeprecatedOWLAnnotationAssertionAxiom
method
in
org.semanticweb.owlapi.model.OWLDataFactory

Best Java code snippets using org.semanticweb.owlapi.model.OWLDataFactory.getDeprecatedOWLAnnotationAssertionAxiom (Showing top 13 results out of 315)

origin: owlcs/owlapi

  @Override
  public void handleTriple(IRI s, IRI p, IRI o) {
    consume(s, p, o);
    add(df.getDeprecatedOWLAnnotationAssertionAxiom(s));
  }
}
origin: net.sourceforge.owlapi/owlapi-distribution

  @Override
  public void handleTriple(IRI s, IRI p, IRI o) {
    consume(s, p, o);
    add(df.getDeprecatedOWLAnnotationAssertionAxiom(s));
  }
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

  @Override
  public void handleTriple(IRI s, IRI p, IRI o) {
    consume(s, p, o);
    add(df.getDeprecatedOWLAnnotationAssertionAxiom(s));
  }
}
origin: net.sourceforge.owlapi/owlapi-parsers

  @Override
  public void handleTriple(IRI s, IRI p, IRI o) {
    consume(s, p, o);
    add(df.getDeprecatedOWLAnnotationAssertionAxiom(s));
  }
}
origin: owlcs/owlapi

  @Override
  public void handleTriple(IRI s, IRI p, IRI o) {
    addCe(s, false);
    consume(s, p, o);
    add(df.getDeprecatedOWLAnnotationAssertionAxiom(s));
  }
}
origin: net.sourceforge.owlapi/owlapi-distribution

  @Override
  public void handleTriple(IRI s, IRI p, IRI o) {
    addCe(s, false);
    consume(s, p, o);
    add(df.getDeprecatedOWLAnnotationAssertionAxiom(s));
  }
}
origin: com.github.ansell.owlapi/owlapi-parsers

  @Override
  public void handleTriple(IRI subject, IRI predicate, IRI object) throws UnloadableImportException {
    consumeTriple(subject, predicate, object);
    addAxiom(getDataFactory().getDeprecatedOWLAnnotationAssertionAxiom(subject));
  }
}
origin: net.sourceforge.owlapi/owlapi-parsers

  @Override
  public void handleTriple(IRI s, IRI p, IRI o) {
    addCe(s, false);
    consume(s, p, o);
    add(df.getDeprecatedOWLAnnotationAssertionAxiom(s));
  }
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

  @Override
  public void handleTriple(IRI s, IRI p, IRI o) {
    addCe(s, false);
    consume(s, p, o);
    add(df.getDeprecatedOWLAnnotationAssertionAxiom(s));
  }
}
origin: protegeproject/webprotege

private void deprecateSourceEntities(OntologyChangeList.Builder<OWLEntity> builder) {
  sourceEntities.forEach(sourceEntity -> {
    // Add an annotation assertion to deprecate the source entity
    OWLAnnotationAssertionAxiom depAx = dataFactory.getDeprecatedOWLAnnotationAssertionAxiom(sourceEntity.getIRI());
    builder.addAxiom(rootOntology, depAx);
    // Preserve labels and other annotations on the source entity
    ontologyStream(rootOntology, Imports.INCLUDED)
        .forEach(ont -> ont.getAnnotationAssertionAxioms(sourceEntity.getIRI())
            .forEach(ax -> builder.addAxiom(ont, ax)));
  });
}
origin: net.sourceforge.owlapi/owlapi

  public void handleTriple(IRI subject, IRI predicate, IRI object) throws UnloadableImportException {
    getConsumer().addOWLClass(subject);
    consumeTriple(subject, predicate, object);
    addAxiom(getDataFactory().getDeprecatedOWLAnnotationAssertionAxiom(subject));
  }
}
origin: com.github.ansell.owlapi/owlapi-parsers

  @Override
  public void handleTriple(IRI subject, IRI predicate, IRI object) throws UnloadableImportException {
    getConsumer().addClassExpression(subject, false);
    consumeTriple(subject, predicate, object);
    addAxiom(getDataFactory().getDeprecatedOWLAnnotationAssertionAxiom(subject));
  }
}
origin: net.sourceforge.owlapi/owlapi

  public void handleTriple(IRI subject, IRI predicate, IRI object) throws UnloadableImportException {
    getConsumer().addOWLClass(subject);
    consumeTriple(subject, predicate, object);
    addAxiom(getDataFactory().getDeprecatedOWLAnnotationAssertionAxiom(subject));
  }
}
org.semanticweb.owlapi.modelOWLDataFactorygetDeprecatedOWLAnnotationAssertionAxiom

Javadoc

Gets an annotation assertion that specifies that an IRI is deprecated. The annotation property is owl:deprecated and the value of the annotation is "true"^^xsd:boolean. (See Annotation Properties in the OWL 2 Specification

Popular methods of OWLDataFactory

  • getOWLClass
    Gets an OWL class that has the specified IRI
  • getOWLNamedIndividual
    Gets an OWL individual that has the specified IRI
  • getOWLObjectProperty
    Gets an OWL object property that has the specified IRI
  • getOWLSubClassOfAxiom
  • getOWLClassAssertionAxiom
  • getOWLDataProperty
    Gets an OWL data property that has the specified IRI
  • getOWLThing
    Gets the built in owl:Thing class, which has a URI of
  • getOWLAnnotationProperty
    Gets an OWLAnnotationProperty that has the specified IRI
  • getOWLLiteral
    Convenience method that obtains a literal typed as a boolean.
  • getOWLDeclarationAxiom
    Gets a declaration with zero or more annotations for an entity
  • getOWLObjectIntersectionOf
  • getOWLEquivalentClassesAxiom
  • getOWLObjectIntersectionOf,
  • getOWLEquivalentClassesAxiom,
  • getOWLObjectSomeValuesFrom,
  • getOWLNothing,
  • getOWLObjectComplementOf,
  • getOWLObjectPropertyAssertionAxiom,
  • getOWLAnnotationAssertionAxiom,
  • getOWLDataPropertyAssertionAxiom,
  • getOWLDatatype,
  • getOWLAnnotation

Popular in Java

  • Making http requests using okhttp
  • startActivity (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • onRequestPermissionsResult (Fragment)
  • Kernel (java.awt.image)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now