Home | History | Annotate | Download | only in stream

Lines Matching defs:StreamSource

18 // $Id: StreamSource.java 829971 2009-10-26 21:15:39Z mrglavas $
32 * <code>StreamSource</code> instances may only be used once.</p>
37 public class StreamSource implements Source {
44 "http://javax.xml.transform.stream.StreamSource/feature";
57 public StreamSource() { }
60 * Construct a StreamSource from a byte stream. Normally,
71 public StreamSource(InputStream inputStream) {
76 * Construct a StreamSource from a byte stream. Normally,
88 public StreamSource(InputStream inputStream, String systemId) {
94 * Construct a StreamSource from a character reader. Normally,
103 public StreamSource(Reader reader) {
108 * Construct a StreamSource from a character reader. Normally,
118 public StreamSource(Reader reader, String systemId) {
124 * Construct a StreamSource from a URL.
128 public StreamSource(String systemId) {
133 * Construct a StreamSource from a File.
137 public StreamSource(File f) {