MCPcopy Create free account
hub / github.com/apache/pig / visit

Method visit

src/org/apache/pig/tools/pigstats/PigStats.java:371–381  ·  view source on GitHub ↗
(JobStats op)

Source from the content-addressed store, hash-verified

369 }
370
371 public void visit(JobStats op) throws FrontendException {
372 buf.append(op.getJobId());
373 List<Operator> succs = plan.getSuccessors(op);
374 if (succs != null) {
375 buf.append("\t->\t");
376 for (Operator p : succs) {
377 buf.append(((JobStats)p).getJobId()).append(",");
378 }
379 }
380 buf.append("\n");
381 }
382
383 @Override
384 public String toString() {

Callers 4

toStringMethod · 0.95
acceptMethod · 0.95
acceptMethod · 0.95
acceptMethod · 0.95

Calls 3

appendMethod · 0.65
getSuccessorsMethod · 0.65
getJobIdMethod · 0.45

Tested by

no test coverage detected