Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.jplanet.xsldb
Class Xsldb  view Xsldb download Xsldb.java

java.lang.Object
  extended bycom.jplanet.xsldb.Xsldb
All Implemented Interfaces:
java.util.EventListener, org.apache.xalan.trace.TraceListener, org.apache.xalan.trace.TraceListenerEx

public class Xsldb
extends java.lang.Object
implements org.apache.xalan.trace.TraceListenerEx

Version:
1.0

Field Summary
(package private)  DecisionMaker decMaker
           
 boolean display_valueof
           
 boolean display_variable
          Show XSLT-Variable-Definitions.
 boolean generated
           
protected  int initDecision
           
 boolean selected
           
 boolean trace
          This is for high level controlling.
 
Constructor Summary
Xsldb()
           
 
Method Summary
 void generated(org.apache.xalan.trace.GenerateEvent ge)
          This method is called back when something is written to the output stream.
 void selected(org.apache.xalan.trace.SelectionEvent se)
          This method is called after execution of the selectionAttribute (and always after the trace method).
 void selectEnd(org.apache.xalan.trace.EndSelectionEvent ese)
          Nothin to do here, uh? Seems we're not really using the extended class TraceListenerEx...
 void trace(org.apache.xalan.trace.TracerEvent te)
          This is a callback method.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

display_variable

public boolean display_variable
Show XSLT-Variable-Definitions. May be overwritten from outside. Beware to know what you're doing.


display_valueof

public boolean display_valueof

trace

public boolean trace
This is for high level controlling. You can manipulate the state from outsite. If you know what your're doing.


selected

public boolean selected

generated

public boolean generated

decMaker

DecisionMaker decMaker

initDecision

protected int initDecision
Constructor Detail

Xsldb

public Xsldb()
Method Detail

trace

public void trace(org.apache.xalan.trace.TracerEvent te)
This is a callback method. It is called before an XPath expression is executed (and before the 'selected' method).

Specified by:
trace in interface org.apache.xalan.trace.TraceListener

selected

public void selected(org.apache.xalan.trace.SelectionEvent se)
              throws javax.xml.transform.TransformerException
This method is called after execution of the selectionAttribute (and always after the trace method).

Specified by:
selected in interface org.apache.xalan.trace.TraceListener

generated

public void generated(org.apache.xalan.trace.GenerateEvent ge)
This method is called back when something is written to the output stream. Lies in the calling back sequence behind the trace and selected methods.

Specified by:
generated in interface org.apache.xalan.trace.TraceListener

selectEnd

public void selectEnd(org.apache.xalan.trace.EndSelectionEvent ese)
               throws javax.xml.transform.TransformerException
Nothin to do here, uh? Seems we're not really using the extended class TraceListenerEx...

Specified by:
selectEnd in interface org.apache.xalan.trace.TraceListenerEx