org.semanticweb.owlapi.model.OWLAsymmetricObjectPropertyAxiom Java Examples
The following examples show how to use
org.semanticweb.owlapi.model.OWLAsymmetricObjectPropertyAxiom.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AbstractOwlAxiomConverterVisitor.java From elk-reasoner with Apache License 2.0 | 5 votes |
@Override public T visit(OWLAsymmetricObjectPropertyAxiom axiom) { throw new IllegalArgumentException( OWLAsymmetricObjectPropertyAxiom.class.getSimpleName() + " cannot be converted to " + getTargetClass().getSimpleName()); }
Example #2
Source File: AbstractElkObjectConverter.java From elk-reasoner with Apache License 2.0 | 4 votes |
@Override public OWLAsymmetricObjectPropertyAxiom visit( ElkAsymmetricObjectPropertyAxiom axiom) { return owlFactory_.getOWLAsymmetricObjectPropertyAxiom( convert(axiom.getProperty())); }
Example #3
Source File: OwlConverter.java From elk-reasoner with Apache License 2.0 | 4 votes |
@SuppressWarnings("static-method") public ElkAsymmetricObjectPropertyAxiom convert( OWLAsymmetricObjectPropertyAxiom owlAsymmetricObjectPropertyAxiom) { return new ElkAsymmetricObjectPropertyAxiomWrap<OWLAsymmetricObjectPropertyAxiom>( owlAsymmetricObjectPropertyAxiom); }
Example #4
Source File: OwlAxiomConverterVisitor.java From elk-reasoner with Apache License 2.0 | 4 votes |
@Override public ElkAxiom visit( OWLAsymmetricObjectPropertyAxiom owlAsymmetricObjectPropertyAxiom) { return CONVERTER.convert(owlAsymmetricObjectPropertyAxiom); }
Example #5
Source File: OwlObjectPropertyAxiomConverterVisitor.java From elk-reasoner with Apache License 2.0 | 4 votes |
@Override public ElkObjectPropertyAxiom visit( OWLAsymmetricObjectPropertyAxiom owlAsymmetricObjectPropertyAxiom) { return CONVERTER.convert(owlAsymmetricObjectPropertyAxiom); }
Example #6
Source File: FailingOwlAxiomVisitor.java From elk-reasoner with Apache License 2.0 | 4 votes |
@Override public void visit(OWLAsymmetricObjectPropertyAxiom axiom) { defaultVisit(axiom); }
Example #7
Source File: AxiomAnnotationTools.java From owltools with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Override public OWLAxiom visit(OWLAsymmetricObjectPropertyAxiom axiom) { return factory.getOWLAsymmetricObjectPropertyAxiom(axiom.getProperty(), annotations); }
Example #8
Source File: CardinalityContraintsTools.java From owltools with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Override public void visit(OWLAsymmetricObjectPropertyAxiom axiom) { }