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.xchain.framework.digester.ExtendedDigester.java

/**
 * A digester that has been extended to pass along LexicalHandler events to a custom lexical handler, if it is set.
 *
 * @author Christian Trimble
 */
public class ExtendedDigester extends Digester implements LexicalHandler {

From source file org.apache.axis.message.SAXOutputter.java

public class SAXOutputter extends DefaultHandler implements LexicalHandler {
    protected static Log log = LogFactory.getLog(SAXOutputter.class.getName());

    SerializationContext context;
    boolean isCDATA = false;

From source file Sax2Dom.java

public class Sax2Dom extends DefaultHandler implements ContentHandler, LexicalHandler {
    public static final String EMPTYSTRING = "";
    public static final String XML_PREFIX = "xml";
    public static final String XMLNS_PREFIX = "xmlns";
    public static final String XMLNS_STRING = "xmlns:";
    public static final String XMLNS_URI = "http://www.w3.org/2000/xmlns/";

From source file org.apache.cocoon.template.script.Parser.java

/**
 * @version SVN $Id: Parser.java 325973 2005-10-17 19:59:39Z lgawron $
 */
public class Parser implements ContentHandler, LexicalHandler {
    StartDocument startEvent;
    Event lastEvent;

From source file org.oscarehr.sharingcenter.util.EformParser.java

/**
 * This page was used to help create this file.
 * http://docs.oracle.com/javaee/1.4/tutorial/doc/JAXPSAX3.html
 *
 * @author yousifiy
 */

From source file org.xwiki.xml.Sax2Dom.java

/**
 * Convert SAX events into a Document.
 *
 * @version $Id: 01de195f051f5fee36b127d7b93f33134059208d $
 */
public class Sax2Dom implements ContentHandler, LexicalHandler {

From source file org.infoscoop.request.filter.rss.RssHandler.java

public class RssHandler extends DefaultHandler implements LexicalHandler {
    protected static final String MSD_NAMESPACE = "http://www.beacon-it.co.jp/namespaces/msd";
    protected static final String DUBLIN_CORE_NAMESPACE = "http://purl.org/dc/elements/1.1/";
    protected static final String CONTENT_MODULE_NAMESPACE = "http://purl.org/rss/1.0/modules/content/";

    private static Log log = LogFactory.getLog(RssHandler.class);

From source file org.seasar.mayaa.impl.builder.SpecificationNodeHandler.java

/**
 * @author Masataka Kurihara (Gluegent, Inc.)
 */
public class SpecificationNodeHandler implements EntityResolver, DTDHandler, ContentHandler, ErrorHandler,
        LexicalHandler, AdditionalHandler, CONST_IMPL {

From source file org.jbuiltDemo.managed.view.Xhtml2Jbuilt.java

/**
 * A tool that can be used to convert normal xhtml files to jbuilt java source.
 * does not quite convert the entire file properly because of how Jbuilt works
 * a clever work around is yet to come
 * 
 * @author Gerard Stannard

From source file com.sonicle.webtop.mail.SaxHTMLMailParser.java

public class SaxHTMLMailParser extends DefaultHandler implements LexicalHandler {

    private Body body = new Body();

    private PipedWriter writer = null;
    private PipedReader reader = null;