Ejemplo n.º 1
0
 @Override
 public void visit(SWRLDifferentIndividualsAtom node) {
   node.getFirstArgument().accept(this);
   SWRLIArgument arg0 = (SWRLIArgument) obj;
   node.getSecondArgument().accept(this);
   SWRLIArgument arg1 = (SWRLIArgument) obj;
   obj = dataFactory.getSWRLDifferentIndividualsAtom(arg0, arg1);
 }
Ejemplo n.º 2
0
 @Override
 public void visit(SWRLDifferentIndividualsAtom node) {
   for (SWRLArgument a : node.getAllArguments()) {
     writeSpace();
     a.accept(this);
   }
 }
 public void visit(SWRLDifferentIndividualsAtom node) {
   node.getFirstArgument().accept(this);
 }