Searched refs:InputSource (Results 1 - 25 of 150) sorted by relevance

123456

/openjdk7/jaxp/src/javax/xml/transform/sax/
H A DSAXSource.java31 import org.xml.sax.InputSource;
58 * {@link #setInputSource(InputSource inputSource)} , then the
60 * create an empty source {@link org.xml.sax.InputSource} using
61 * {@link org.xml.sax.InputSource#InputSource() new InputSource()}.</p>
69 * and a SAX InputSource. The {@link javax.xml.transform.Transformer}
78 public SAXSource(XMLReader reader, InputSource inputSource) {
84 * Create a <code>SAXSource</code>, using a SAX <code>InputSource</code>.
95 public SAXSource(InputSource inputSourc
[all...]
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPathExpression.java28 import org.xml.sax.InputSource;
150 * <p>Evaluate the compiled XPath expression in the context of the specified <code>InputSource</code> and return the result as the
153 * <p>This method builds a data model for the {@link InputSource} and calls
165 * @param source The <code>InputSource</code> of the document to evaluate over.
175 public Object evaluate(InputSource source, QName returnType)
179 * <p>Evaluate the compiled XPath expression in the context of the specified <code>InputSource</code> and return the result as a
182 * <p>This method calls {@link #evaluate(InputSource source, QName returnType)} with a <code>returnType</code> of
190 * @param source The <code>InputSource</code> of the document to evaluate over.
198 public String evaluate(InputSource source)
H A DXPath.java28 import org.xml.sax.InputSource;
263 * <p>Evaluate an XPath expression in the context of the specified <code>InputSource</code>
266 * <p>This method builds a data model for the {@link InputSource} and calls
291 InputSource source,
296 * <p>Evaluate an XPath expression in the context of the specified <code>InputSource</code>
299 * <p>This method calls {@link #evaluate(String expression, InputSource source, QName returnType)} with a
309 * @param source The <code>InputSource</code> of the document to evaluate over.
317 public String evaluate(String expression, InputSource source)
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DXmlResolver.java31 import org.xml.sax.InputSource;
41 public InputSource resolveEntity(String publicId, String systemId) {
45 return new InputSource(this.getClass().getResourceAsStream(schemaName));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DResourceEntityResolver.java29 import org.xml.sax.InputSource;
38 public InputSource resolveEntity( String publicId, String systemId ) {
39 return new InputSource(base.getResourceAsStream(systemId));
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DSourceLoader.java26 import org.xml.sax.InputSource;
40 * @return An InputSource with the loaded document
42 public InputSource loadSource(String href, String context, XSLTC xsltc);
/openjdk7/jaxp/src/org/xml/sax/
H A DInputSource.java29 // $Id: InputSource.java,v 1.2 2004/11/03 22:55:32 jsuttor Exp $
56 * <p>The SAX parser will use the InputSource object to determine how
62 * encoding specified in the InputSource or else (if no encoding is
70 * <p>An InputSource object belongs to the application: the SAX parser
79 * @see org.xml.sax.XMLReader#parse(org.xml.sax.InputSource)
84 public class InputSource { class
95 public InputSource () method in class:InputSource
117 public InputSource (String systemId) method in class:InputSource
138 public InputSource (InputStream byteStream) method in class:InputSource
158 public InputSource (Reade method in class:InputSource
[all...]
H A DEntityResolver.java67 * import org.xml.sax.InputSource;
70 * public InputSource resolveEntity (String publicId, String systemId)
75 * return new InputSource(reader);
91 * @see org.xml.sax.InputSource
116 * how to interpret any InputSource returned by this method, and that
127 * @return An InputSource object describing the new input source,
134 * or Reader for the InputSource.
135 * @see org.xml.sax.InputSource
137 public abstract InputSource resolveEntity (String publicId,
/openjdk7/jaxp/src/javax/xml/parsers/
H A DDocumentBuilder.java39 import org.xml.sax.InputSource;
120 InputSource in = new InputSource(is);
148 InputSource in = new InputSource(is);
176 InputSource in = new InputSource(uri);
204 InputSource in = new InputSource(f.toURI().toASCIIString());
212 * <code>InputSource</cod
[all...]
H A DSAXParser.java35 import org.xml.sax.InputSource;
138 InputSource input = new InputSource(is);
169 InputSource input = new InputSource(is);
194 InputSource input = new InputSource(is);
222 InputSource input = new InputSource(is);
249 InputSource inpu
[all...]
/openjdk7/jaxp/src/org/xml/sax/ext/
H A DEntityResolver2.java36 import org.xml.sax.InputSource;
120 * <p>Note that the InputSource gets no further resolution.
146 * URI, unless it is null because the XMLReader was given an InputSource
149 * @return An InputSource object describing the new external subset
158 public InputSource getExternalSubset (String name, String baseURI)
197 * null (likely because the XMLReader was given an InputSource without
205 * @return An InputSource object describing the new input source to
215 public InputSource resolveEntity (
H A DDefaultHandler2.java34 import org.xml.sax.InputSource;
125 public InputSource getExternalSubset (String name, String baseURI)
138 public InputSource resolveEntity (String name, String publicId,
151 public InputSource resolveEntity (String publicId, String systemId)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DExternalEntity.java29 import org.xml.sax.InputSource;
43 public InputSource getInputSource(EntityResolver r)
46 InputSource retval;
H A DResolver.java29 import org.xml.sax.InputSource;
47 * <LI> Static factory methods are provided for constructing SAX InputSource
68 * <LI> The InputSource objects returned by this class always
151 * an InputSource is desired, such as <em>text/xml;charset=utf-8</em>.
159 public static InputSource createInputSource(String contentType,
163 InputSource retval;
232 retval = new InputSource(XmlReader.createReader(stream, charset));
246 static public InputSource createInputSource(URL uri, boolean checkType)
250 InputSource retval;
257 retval = new InputSource(XmlReade
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DSAXInputSource.java27 import org.xml.sax.InputSource;
37 private InputSource fInputSource;
43 public SAXInputSource(InputSource inputSource) {
47 public SAXInputSource(XMLReader reader, InputSource inputSource) {
67 public void setInputSource(InputSource inputSource) {
85 public InputSource getInputSource() {
97 fInputSource = new InputSource();
110 fInputSource = new InputSource();
127 fInputSource = new InputSource();
146 fInputSource = new InputSource();
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/parser/
H A DXMLParser.java33 import org.xml.sax.InputSource;
63 void parse( InputSource source, ContentHandler handler,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DUtil.java33 import org.xml.sax.InputSource;
51 * Gets an InputSource from a string, which contains either
54 public static InputSource getInputSource(String fileOrURL) {
58 return new InputSource(escapeSpace(((URL)o).toExternalForm()));
61 return new InputSource(escapeSpace(url));
64 return new InputSource(fileOrURL);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/util/
H A DForkEntityResolver.java29 import org.xml.sax.InputSource;
48 public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException {
49 InputSource is = lhs.resolveEntity(publicId, systemId);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DForkEntityResolver.java31 import org.xml.sax.InputSource;
48 public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException {
49 InputSource is = lhs.resolveEntity(publicId, systemId);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/
H A DFastInfosetSource.java34 import org.xml.sax.InputSource;
54 * be used only for parsing the InputSource object returned by
56 * <LI>The InputSource object obtained by the getInputSource method shall
65 super(new InputSource(inputStream));
83 setInputSource(new InputSource(inputStream));
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DCoroutineParser.java27 import org.xml.sax.InputSource;
93 * @param source The InputSource to parse from.
101 public Object doParse(InputSource source, int appCoroutine);
H A DIncrementalSAXSource.java27 import org.xml.sax.InputSource;
89 public void startParse(InputSource source) throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsimportOptions.java44 import org.xml.sax.InputSource;
281 private final List<InputSource> wsdls = new ArrayList<InputSource>();
282 private final List<InputSource> schemas = new ArrayList<InputSource>();
283 private final List<InputSource> bindingFiles = new ArrayList<InputSource>();
284 private final List<InputSource> jaxwsCustomBindings = new ArrayList<InputSource>();
285 private final List<InputSource> jaxbCustomBinding
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DXMLReaderImpl.java30 import org.xml.sax.InputSource;
55 "This is a special XMLReader implementation that only works with the InputSource given in SAXSource.");
58 public void parse(InputSource input) throws SAXException {
79 * Special {@link InputSource} instance that we use to pass to {@link SAXSource}.
81 protected static final InputSource THE_SOURCE = new InputSource();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/parser/
H A DSchemaConstraintChecker.java42 import org.xml.sax.InputSource;
62 public static boolean check(InputSource[] schemas,
76 InputSource is = entityResolver.resolveEntity(namespaceURI, systemId);
103 * convert an array of {@link InputSource InputSource} into an
106 * @param schemas array of {@link InputSource InputSource}
109 private static Source[] getSchemaSource(InputSource[] schemas) {
118 InputSource[] sources = new InputSource[arg
[all...]

Completed in 2480 milliseconds

123456