Example usage for org.xml.sax.ext LexicalHandler interface-usage

List of usage examples for org.xml.sax.ext LexicalHandler interface-usage

Introduction

In this page you can find the example usage for org.xml.sax.ext LexicalHandler interface-usage.

Usage

From source file org.eclipse.smila.connectivity.framework.crawler.web.parse.html.DOMBuilder.java

/**
 * This class takes SAX events (in addition to some extra events that SAX doesn't handle yet) and adds the result to a
 * document or document fragment.
 */
public class DOMBuilder implements ContentHandler, LexicalHandler {

From source file DocumentTracer.java

/**
 * Provides a complete trace of SAX2 events for files parsed. This is
 * useful for making sure that a SAX parser implementation faithfully
 * communicates all information in the document to the SAX handlers.
 *
 * @author Andy Clark, IBM

From source file XMLWriter.java

/**
 * Filter to write an XML document from a SAX event stream.
 *
 * <p>This class can be used by itself or as part of a SAX event
 * stream: it takes as input a series of SAX2 ContentHandler
 * events and uses the information in those events to write

From source file Writer.java

/**
 * A sample SAX2 writer. This sample program illustrates how to register a SAX2
 * ContentHandler and receive the callbacks in order to print a document that is
 * parsed.
 * 
 * @author Andy Clark, IBM

From source file edu.virginia.speclab.juxta.author.model.JuxtaXMLParser.java

/**
 * Normally juxta reads in either an XML file with a very limited set of tags 
 * (call this a juxta xml file) and simply parses out the raw text, making note 
 * of some line number annotations with data given in some of the tags.  
 * 
 * What we want to be able to do is read an arbitrary XML file with an 

From source file org.apache.axis.encoding.DeserializationContext.java

/**
 * This interface describes the AXIS DeserializationContext, note that
 * an AXIS compliant DeserializationContext must extend the org.xml.sax.helpers.DefaultHandler.
 */

public class DeserializationContext extends DefaultHandler

From source file net.sf.joost.stx.Processor.java

/**
 * Processes an XML document as SAX XMLFilter. Actions are contained
 * within an array of templates, received from a transform node.
 * @version $Revision: 2.62 $ $Date: 2010/01/24 15:32:51 $
 * @author Oliver Becker
 */

From source file mf.org.apache.xml.serialize.BaseMarkupSerializer.java

public abstract class BaseMarkupSerializer implements ContentHandler, DocumentHandler, LexicalHandler, DTDHandler,
        DeclHandler, DOMSerializer, Serializer {
    protected String _docTypePublicId;
    protected String _docTypeSystemId;
    private int _elementStateCount;
    private ElementState[] _elementStates;