Пример #1
0
 public void printMe() throws HopsException {
   if (getVisited() != VisitStatus.DONE) {
     super.printMe();
     for (Hop h : getInput()) {
       h.printMe();
     }
   }
   setVisited(VisitStatus.DONE);
 }
Пример #2
0
 public void printMe() throws HopsException {
   if (LOG.isDebugEnabled()) {
     if (getVisited() != VisitStatus.DONE) {
       super.printMe();
       LOG.debug("  Operation: " + _op);
       for (Hop h : getInput()) {
         h.printMe();
       }
     }
     setVisited(VisitStatus.DONE);
   }
 }