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.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 edu.lternet.pasta.dml.dataquery.DataquerySpecification.java

/**
 * A Class that represents a data query, and can be constructed from an
 * XML serialization conforming to
 *
 * @see dataquery.xsd. The Data Manager Library should be used to execute the 
 * Query or Union provided by this class.

From source file com.jkoolcloud.jesl.simulator.TNT4JSimulatorParserHandler.java

/**
 * Implements the SAX DefaultHandler for parsing jKool TNT4J Activity Simulator XML.
 *
 * This is the guts of the simulator.  As the activities and events are parsed, they
 * are executed.
 *

From source file net.semanticmetadata.lire.solr.SearchImages.java

class SolrResponseHandler extends DefaultHandler {
    boolean isInDocument;
    boolean isInHistogram;
    boolean isInId;
    int countResults = 0;
    StringBuilder hist = new StringBuilder(256);

From source file org.ecoinformatics.datamanager.dataquery.DataquerySpecification.java

/**
 * A Class that represents a data query, and can be constructed from an
 * XML serialization conforming to
 *
 * @see dataquery.xsd. The Data Manager Library should be used to execute the 
 * Query or Union provided by this class.

From source file org.quartz.xml.JobSchedulingDataProcessor.java

/**
 * Parses an XML file that declares Jobs and their schedules (Triggers).
 * 
 * The xml document must conform to the format defined in
 * "job_scheduling_data_1_5.dtd" or "job_scheduling_data_1_5.xsd"
 * 

From source file no.ntnu.idi.socialhitchhiking.map.RouteProvider.java

class KMLHandler extends DefaultHandler {
    MapRoute route;
    boolean isPlacemark;
    boolean isRoute;
    boolean isItemIcon;
    private Stack<String> mCurrentElement = new Stack<String>();

From source file com.jkoolcloud.tnt4j.streams.configure.sax.ConfigParserHandler.java

/**
 * Implements the SAX DefaultHandler for parsing TNT4J-Streams configuration.
 *
 * @version $Revision: 1 $
 *
 * @see com.jkoolcloud.tnt4j.streams.configure.StreamsConfigLoader

From source file org.apache.tomcat.util.digester.Digester.java

/**
 * <p>A <strong>Digester</strong> processes an XML input stream by matching a
 * series of element nesting patterns to execute Rules that have been added
 * prior to the start of parsing.  This package was inspired by the
 * <code>XmlMapper</code> class that was part of Tomcat 3.0 and 3.1,
 * but is organized somewhat differently.</p>

From source file org.intermine.web.ProfileManagerBinding.java

/**
 * Extension of DefaultHandler to handle parsing ProfileManagers
 * @author Kim Rutherford
 */
class ProfileManagerHandler extends DefaultHandler {
    private ProfileHandler profileHandler = null;