Example usage for org.xml.sax.helpers DefaultHandler subclass-usage

List of usage examples for org.xml.sax.helpers DefaultHandler subclass-usage

Introduction

In this page you can find the example usage for org.xml.sax.helpers DefaultHandler subclass-usage.

Usage

From source file org.iterx.miru.handler.XmlHandlerMappingParser.java

public class XmlHandlerMappingParser extends DefaultHandler {

    protected final Log logger = LogFactory.getLog(XmlHandlerMappingParser.class);

    protected static final String SITEMAP_NS = "http://iterx.org/miru/map/1.0";

From source file edu.ku.brc.specify.toycode.mexconabio.FMPCreateTable.java

/**
 * @author rods
 *
 * @code_status Alpha
 *
 * Feb 3, 2010

From source file sos.insert.InsertSensor.java

/** Manage sensor insertion, check format and store in sos server, this is a singleton.
 * This class is also a SAX handler for extracting the content file (the sensor) 
 * from the POST content. The insert method is synchronized, the insertions are done
 * one after the other because SAX parsing is not thread safe.
 * The sos server is a servlet which uses threads, SAX parsing is fast but for
 * schematron validation I convert it to xsl and then use xslt : this phase is really slow,

From source file org.jcurl.core.helpers.XmlSimpleWriter.java

/**
 * A very leightweight, quick and simple xml serializer implementing a SAX
 * content-handler to <b>write to a stream </b> or writer. Can handle changing
 * default namespaces. Checks well-formedness. Does not support smart namespace
 * prefix handling - which it should.
 * 

From source file org.iterx.miru.bean.factory.XmlBeanParser.java

public class XmlBeanParser extends DefaultHandler {

    public static final String MIRU_BEANS_NS = "context://iterx.org/miru/1.0/beans";

    private static final String TAG_BEANS = "beans";
    private static final String TAG_BEAN = "bean";

From source file be.fedict.eidviewer.lib.file.imports.EidQuickKeyXMLFile.java

/**
 *
 * @author Frank Marien
 */
public class EidQuickKeyXMLFile extends DefaultHandler {
    private static final Logger logger = Logger.getLogger(EidQuickKeyXMLFile.class.getName());

From source file com.sshtools.daemon.configuration.PlatformConfiguration.java

/**
 *
 *
 * @author $author$
 * @version $Revision: 1.1.1.1 $
 */

From source file org.opencastproject.metadata.dublincore.DublinCoreXmlFormat.java

/**
 * Parse a DublinCore catalog from XML.
 */
@ParametersAreNonnullByDefault
public final class DublinCoreXmlFormat extends DefaultHandler {
    /** the logging facility provided by log4j */

From source file org.languagetool.rules.patterns.FalseFriendRuleLoader.java

/**
 * Loads {@link PatternRule}s from a false friends XML file.
 * 
 * @author Daniel Naber
 */
public class FalseFriendRuleLoader extends DefaultHandler {

From source file org.symphonyoss.client.util.MlMessageParser.java

/**
 * Provides simple utility to parse MlMessage formatted text
 *
 * @author Frank Tarsillo
 */
public class MlMessageParser extends DefaultHandler {