- Common ways to obtain OWLObject
private void myMethod () {OWLObject o =
OWLObjectTreeNode parentNode;parentNode.getOWLObject()
OWLObjectTree tree;tree.getSelectedOWLObject()
OWLAnnotationAssertionAxiom oWLAnnotationAssertionAxiom;oWLAnnotationAssertionAxiom.getSubject()
- Smart code suggestions by Codota
}
/** * @return true if this object is not an axiom, not an individual and anonymous; this is true * for class and property expressions, as well as data ranges. */ default boolean isAnonymousExpression() { return !isAxiom() && !isIndividual() && !isOntology() && isAnonymous(); }
/** * @return true if this object is not an axiom, not an individual and anonymous; this is true * for class and property expressions, as well as data ranges. */ default boolean isAnonymousExpression() { return !isAxiom() && !isIndividual() && !isOntology() && isAnonymous(); }
/** * @return true if this object is not an axiom, not an individual and anonymous; this is true * for class and property expressions, as well as data ranges. */ default boolean isAnonymousExpression() { return !isAxiom() && !isIndividual() && !isOntology() && isAnonymous(); }