List of usage examples for org.xml.sax.helpers DefaultHandler subclass-usage
From source file org.apache.torque.generator.configuration.outlet.OutletSaxHandler.java
/** * Handles a outlet declaration within the outlet configuration. * Base class for more specific handlers. */ public abstract class OutletSaxHandler extends DefaultHandler { /** the logger for the class. */
From source file com.aurel.track.admin.customize.category.filter.tree.io.TreeFilterParser.java
/** * SAX parser to parse the query tree */ public class TreeFilterParser extends DefaultHandler { private static final Logger LOGGER = LogManager.getLogger(TreeFilterParser.class); private QNode currentNode;
From source file cz.muni.fi.japanesejmdictsaxparser.saxholder.SaxKanjidic2Holder.java
/**
* Sax data holder for kanjidict2 xml.
*
* @author Jaroslav Klech
*
*/
From source file com.gimranov.zandy.app.XMLResponseParser.java
public class XMLResponseParser extends DefaultHandler { private static final String TAG = "com.gimranov.zandy.app.XMLResponseParser"; private InputStream input; private Item item; private Attachment attachment;
From source file org.jcurl.core.io.SetupSaxDeSer.java
/**
* Just do XML parsing and hand values to {@link org.jcurl.core.io.SetupBuilder}.
*
* @see org.jcurl.core.io.OldConfigReader
* @author <a href="mailto:jcurl@gmx.net">M. Rohrmoser </a>
* @version $Id:SetupSaxDeSer.java 378 2007-01-24 01:18:35Z mrohrmoser $
From source file org.slc.sli.ingestion.parser.impl.EdfiRecordParserImpl2.java
/**
* A reader delegate that will intercept an XML Validator's calls to nextEvent() and build the
* document into a Map of Maps data structure.
*
* Additionally, the class implements ErrorHandler so
* that the parsing of a specific entity can be aware of validation errors.
From source file Main.java
class MySAXHandler extends DefaultHandler { public void startDocument() { System.out.println("Start document: "); } public void endDocument() {
From source file org.codice.ddf.transformer.xml.streaming.lib.SaxEventHandlerDelegate.java
/** * This class is used by the {@link XmlInputTransformer} to delegate SAX Parse events to the relevant handlers. * Its primary method is {@link SaxEventHandlerDelegate#read} which takes in an {@link InputStream} returns a {@link Metacard}, * populated with all the {@link Attribute}s parsed by the {@link SaxEventHandlerDelegate#eventHandlers} */ public class SaxEventHandlerDelegate extends DefaultHandler {
From source file hd3gtv.mydmam.db.BackupDbCassandra.java
class BackupDbCassandra extends DefaultHandler implements ErrorHandler, AllRowsFoundRow { private QuotedPrintableCodec quotedprintablecodec; private boolean purgebefore; private Keyspace keyspace;
From source file com.frameworkset.orm.engine.transform.XmlToData.java
/**
* A Class that is used to parse an input xml schema file and creates and
* AppData java structure.
*
* @author <a href="mailto:leon@opticode.co.za">Leon Messerschmidt</a>
* @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>