Codota Logo
OWLClassAssertionAxiom.getAnnotations
Code IndexAdd Codota to your IDE (free)

How to use
getAnnotations
method
in
org.semanticweb.owlapi.model.OWLClassAssertionAxiom

Best Java code snippets using org.semanticweb.owlapi.model.OWLClassAssertionAxiom.getAnnotations (Showing top 5 results out of 315)

  • Common ways to obtain OWLClassAssertionAxiom
private void myMethod () {
OWLClassAssertionAxiom o =
  • Codota IconOWLDataFactory oWLDataFactory;OWLClassExpression classExpression;OWLIndividual individual;oWLDataFactory.getOWLClassAssertionAxiom(classExpression, individual)
  • Smart code suggestions by Codota
}
origin: net.sourceforge.owlapi/owlapi-gwt-supersource

@Override
public void visit(OWLClassAssertionAxiom axiom) {
  hashCode = 7;
  hashCode = hashCode * MULT + axiom.getIndividual().hashCode();
  hashCode = hashCode * MULT + axiom.getClassExpression().hashCode();
  hashCode = hashCode * MULT + axiom.getAnnotations().hashCode();
}
origin: net.sourceforge.owlapi/owlapi

public void visit(OWLClassAssertionAxiom axiom) {
  hashCode = 7;
  hashCode = hashCode * MULT + axiom.getIndividual().hashCode();
  hashCode = hashCode * MULT + axiom.getClassExpression().hashCode();
  hashCode = hashCode * MULT + axiom.getAnnotations().hashCode();
}
origin: net.sourceforge.owlapi/owlapi-gwt-client-side-emul

@Override
public void visit(OWLClassAssertionAxiom axiom) {
  hashCode = primes[1];
  hashCode = hashCode * MULT + axiom.getIndividual().hashCode();
  hashCode = hashCode * MULT + axiom.getClassExpression().hashCode();
  hashCode = hashCode * MULT + axiom.getAnnotations().hashCode();
}
origin: net.sourceforge.owlapi/owlapi

for (OWLClassAssertionAxiom ax : ontology.getClassAssertionAxioms(individual)) {
  if (isDisplayed(ax)) {
    expressions.put(ax.getClassExpression(), ax.getAnnotations());
    axioms.add(ax);
origin: net.sourceforge.owlapi/owlapi

if (isDisplayed(ax)) {
  if (renderExtensions || ax.getIndividual().isAnonymous()) {
    individuals.put(ax.getIndividual(), ax.getAnnotations());
    axioms.add(ax);
org.semanticweb.owlapi.modelOWLClassAssertionAxiomgetAnnotations

Popular methods of OWLClassAssertionAxiom

  • getClassExpression
    Gets the class expression that is asserted to be a type for an individual by this axiom.
  • getIndividual
    Gets the individual that is asserted to be an instance of a class expression by this axiom.
  • annotations
  • accept
  • annotationsAsList
  • getAxiomType
  • hashIndex
  • asOWLSubClassOfAxiom

Popular in Java

  • Finding current android device location
  • onCreateOptionsMenu (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • startActivity (Activity)
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • PriorityQueue (java.util)
    An unbounded priority Queue based on a priority heap. The elements of the priority queue are ordered
  • Timer (java.util)
    A facility for threads to schedule tasks for future execution in a background thread. Tasks may be s
  • BoxLayout (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now