List of usage examples for org.xml.sax.helpers DefaultHandler subclass-usage
From source file es.mityc.firmaJava.libreria.utilidades.AnalizadorFicheroFirma.java
/** * @author Ministerio de Industria, Turismo y Comercio * @version 0.9 beta */ public class AnalizadorFicheroFirma extends DefaultHandler implements ConstantesXADES {
From source file com.esri.geoevent.solutions.adapter.cot.MessageParser.java
public class MessageParser extends DefaultHandler { private static final String MESSAGES = "messages"; private static final String MESSAGE = "message"; private static final Log LOG = LogFactory.getLog(MessageParser.class); private enum MessageLevel {
From source file org.glimpse.server.news.sax.ChannelHandler.java
class ChannelHandler extends DefaultHandler { private static Log logger = LogFactory.getLog(ChannelHandler.class); private Type type; private String url; private String title;
From source file com.textocat.textokit.morph.ruscorpora.RusCorporaXmlContentHandler.java
/** * @author Rinat Gareev */ class RusCorporaXmlContentHandler extends DefaultHandler { private static final String E_BR = "br";
From source file net.yacy.cora.document.feed.RSSReader.java
public class RSSReader extends DefaultHandler { // class variables private RSSMessage item; private final StringBuilder buffer; private boolean parsingChannel, parsingItem;
From source file org.apache.torque.engine.database.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>
From source file com.openbravo.pos.printer.TicketParser.java
public class TicketParser extends DefaultHandler { private static SAXParser m_sp = null; private DeviceTicket m_printer; private DataLogicSystem m_system;
From source file org.alfresco.repo.content.selector.RootElementNameContentWorkerSelector.java
/**
* A selector that looks at the root node of an XML document to determine which worker to provide.
* There are many ways to identify XML documents and this is probably the simplest. Alternate
* implementations might execute a series of xpath statements or look for specific namespace
* declarations in the document. The net result is the same, i.e. given an XML document, a
* worker is provided to the caller.
From source file com.zyz.mobile.book.UserBookData.java
/** * Manage the xml info file of a book */ public class UserBookData extends DefaultHandler { private static final String TAG = "UserBookData";
From source file org.pentaho.reporting.engine.classic.extensions.datasources.cda.CdaResponseParser.java
public class CdaResponseParser extends DefaultHandler { private static final Log logger = LogFactory.getLog(CdaResponseParser.class); private TypedTableModel model = new TypedTableModel(); private ArrayList<String> columnRawData; private StringBuffer characterBuffer;