1 package net.sf.saxon.trace; 2 import net.sf.saxon.expr.XPathContext; 3 import net.sf.saxon.om.Item; 4 5 import java.util.EventListener ; 6 7 14 15 public interface TraceListener extends EventListener { 16 17 20 21 public void open(); 22 23 26 27 public void close(); 28 29 35 36 public void enter(InstructionInfo instruction, XPathContext context); 37 38 46 47 public void leave(InstructionInfo instruction); 48 49 57 58 public void startCurrentItem(Item currentItem); 59 60 69 70 public void endCurrentItem(Item currentItem); 71 72 } 73 74 | Popular Tags |