List of usage examples for org.xml.sax EntityResolver interface-usage
From source file Utils.java
class NullResolver implements EntityResolver { public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException { return new InputSource(new StringReader("")); } }
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>
From source file com.wooki.services.parsers.XHTMLToFormattingObjects.java
public class XHTMLToFormattingObjects implements Convertor, URIResolver, EntityResolver { private TransformerFactory tFactory = TransformerFactory.newInstance(); private Transformer transformer; private Resource xslStylesheet;
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.jpos.gl.tools.Import.java
/**
* Import an XML document as described in
* <a href="http://jpos.org/minigl.dtd">minigl.dtd</a>
*
* @author <a href="mailto:apr@jpos.org">Alejandro Revilla</a>
*/
From source file ru.codeinside.gses.webui.utils.JarParseUtils.java
class NullResolver implements EntityResolver { public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException { return new InputSource(new StringReader("")); } }
From source file org.opencms.xml.CmsXmlEntityResolver.java
/**
* Resolves XML entities (e.g. external DTDs) in the OpenCms VFS.<p>
*
* Also provides a cache for XML content schema definitions.<p>
*
* @since 6.0.0
From source file org.apache.catalina.util.SchemaResolver.java
/**
* This class implements a local SAX's <code>EntityResolver</code>. All
* DTDs and schemas used to validate the web.xml file will re-directed
* to a local file stored in the servlet-api.jar and jsp-api.jar.
*
* @author Jean-Francois Arcand
From source file nu.validator.xml.PrudentHttpEntityResolver.java
/** * @version $Id: PrudentHttpEntityResolver.java,v 1.1 2005/01/08 08:11:26 * hsivonen Exp $ * @author hsivonen */ @SuppressWarnings("deprecation")
From source file org.esco.grouper.parsing.SGSParsingUtil.java
/**
* Content handler used read the defintion of groups, folders, administration elements, etc,
* for the Sarapis Group Service (SGS).
* @author GIP RECIA - A. Deman
* 28 juil. 08
*