@Override
 public void visit(OWLNegativeDataPropertyAssertionAxiom axiom) {
   handleObject(axiom);
   axiom.getSubject().accept(this);
   axiom.getProperty().accept(this);
   axiom.getObject().accept(this);
 }
Ejemplo n.º 2
0
 @Override
 public void visit(OWLNegativeDataPropertyAssertionAxiom axiom) {
   write(NOT);
   axiom.getProperty().accept(this);
   write("(");
   axiom.getSubject().accept(this);
   write(", ");
   axiom.getObject().accept(this);
   write(")");
 }
Ejemplo n.º 3
0
 public void visit(OWLNegativeDataPropertyAssertionAxiom object) {
   Constant targetValue = (Constant) object.getObject().accept(m_dataRangeConverter);
   Atom atom =
       getRoleAtom(object.getProperty(), getIndividual(object.getSubject()), targetValue);
   Collection<OWLAxiom> originalAxioms = m_negativeFacts_map.get(atom);
   if (originalAxioms == null) {
     originalAxioms = new ArrayList<OWLAxiom>();
     m_negativeFacts_map.put(atom, originalAxioms);
   }
   if (originalAxiom != null) originalAxioms.add(originalAxiom);
 }
Ejemplo n.º 4
0
 @Override
 public void visit(OWLNegativeDataPropertyAssertionAxiom axiom) {
   axiom.getSubject().accept(this);
   OWLIndividual ind = (OWLIndividual) obj;
   axiom.getProperty().accept(this);
   OWLDataPropertyExpression prop = (OWLDataPropertyExpression) obj;
   axiom.getObject().accept(this);
   OWLLiteral con = (OWLLiteral) obj;
   obj =
       dataFactory.getOWLNegativeDataPropertyAssertionAxiom(
           prop, ind, con, duplicateAxiomAnnotations(axiom));
 }
 @Override
 public void visit(OWLNegativeDataPropertyAssertionAxiom axiom) {
   OWLClassExpression sub = oneOf(axiom.getSubject());
   OWLClassExpression sup = factory.getOWLDataHasValue(axiom.getProperty(), axiom.getObject());
   factory.getOWLSubClassOfAxiom(sub, not(sup)).accept(this);
 }
Ejemplo n.º 6
0
 @Override
 public void visit(OWLNegativeDataPropertyAssertionAxiom axiom) {
   axiom.getProperty().accept(this);
 }
 public void visit(OWLNegativeDataPropertyAssertionAxiom axiom) {
   type = AXIOM_TYPE_INDEX_BASE + axiom.getAxiomType().getIndex();
 }
 public void visit(OWLNegativeDataPropertyAssertionAxiom axiom) {
   axiom.getProperty().accept(this);
   axiom.getObject().accept(this);
   processAxiomAnnotations(axiom);
 }