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

Quick Search    Search Deep

com.nwalsh.saxon
Class LineCountEmitter  view LineCountEmitter download LineCountEmitter.java

java.lang.Object
  extended bycom.icl.saxon.output.Emitter
      extended bycom.nwalsh.saxon.LineCountEmitter

public class LineCountEmitter
extends com.icl.saxon.output.Emitter

Saxon extension to count the lines in a result tree fragment.

Copyright (C) 2000 Norman Walsh.

This class provides a Saxon 6.* implementation to count the number of lines in a result tree fragment.

The general design is this: the stylesheets construct a result tree fragment for some verbatim environment. That result tree fragment is "replayed" through the LineCountEmitter; the LineCountEmitter watches characters go by and counts the number of line feeds that it sees. That number is then returned.

Change Log:

1.0

Initial release.


Field Summary
protected  int numLines
          The number of lines seen.
 
Constructor Summary
LineCountEmitter()
          Construct a new LineCountEmitter.
 
Method Summary
 void characters(char[] chars, int start, int len)
          Process characters.
 void comment(char[] chars, int start, int length)
          Discarded.
 void endDocument()
          Discarded.
 void endElement(int nameCode)
          Discarded.
 int lineCount()
          Return the number of lines.
 void processingInstruction(java.lang.String name, java.lang.String data)
          Discarded.
 void reset()
          Reset the number of lines.
 void setDocumentLocator(org.xml.sax.Locator locator)
          Discarded.
 void setEscaping(boolean escaping)
          Discarded.
 void setNamePool(NamePool namePool)
          Discarded.
 void setUnparsedEntity(java.lang.String name, java.lang.String uri)
          Discarded.
 void setWriter(java.io.Writer writer)
          Discarded.
 void startDocument()
          Discarded.
 void startElement(int nameCode, org.xml.sax.Attributes attributes, int[] namespaces, int nscount)
          Discarded.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

numLines

protected int numLines
The number of lines seen.

Constructor Detail

LineCountEmitter

public LineCountEmitter()
Construct a new LineCountEmitter.

Method Detail

reset

public void reset()
Reset the number of lines.


lineCount

public int lineCount()
Return the number of lines.


characters

public void characters(char[] chars,
                       int start,
                       int len)
                throws javax.xml.transform.TransformerException
Process characters.


comment

public void comment(char[] chars,
                    int start,
                    int length)
             throws javax.xml.transform.TransformerException
Discarded.


endDocument

public void endDocument()
                 throws javax.xml.transform.TransformerException
Discarded.


endElement

public void endElement(int nameCode)
                throws javax.xml.transform.TransformerException
Discarded.


processingInstruction

public void processingInstruction(java.lang.String name,
                                  java.lang.String data)
                           throws javax.xml.transform.TransformerException
Discarded.


setDocumentLocator

public void setDocumentLocator(org.xml.sax.Locator locator)
Discarded.


setEscaping

public void setEscaping(boolean escaping)
                 throws javax.xml.transform.TransformerException
Discarded.


setNamePool

public void setNamePool(NamePool namePool)
Discarded.


setUnparsedEntity

public void setUnparsedEntity(java.lang.String name,
                              java.lang.String uri)
                       throws javax.xml.transform.TransformerException
Discarded.


setWriter

public void setWriter(java.io.Writer writer)
Discarded.


startDocument

public void startDocument()
                   throws javax.xml.transform.TransformerException
Discarded.


startElement

public void startElement(int nameCode,
                         org.xml.sax.Attributes attributes,
                         int[] namespaces,
                         int nscount)
                  throws javax.xml.transform.TransformerException
Discarded.