Searched defs:readOnce (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DStreamingDataHandler.java74 * {@link #readOnce()} invocation on this object (which would
84 * multiple times and then call {@link #readOnce()} afterward.
97 public abstract InputStream readOnce() throws IOException; method in class:StreamingDataHandler
127 * After this method is invoked, {@link #readOnce()} and
H A DBase64Data.java190 public InputStream readOnce() throws IOException { method in class:Base64Data.Base64StreamingDataHandler
214 public InputStream readOnce() throws IOException { method in class:Base64Data.FilterDataHandler
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DDataSourceStreamingDataHandler.java44 public InputStream readOnce() throws IOException { method in class:DataSourceStreamingDataHandler
H A DMIMEPartStreamingDataHandler.java48 * // readOnce() doesn't store attachment on the disk in some cases
50 * InputStream in = sdh.readOnce();
65 public InputStream readOnce() throws IOException { method in class:MIMEPartStreamingDataHandler
66 return ds.readOnce();
85 return part.read(); //readOnce() ??
88 InputStream readOnce() throws IOException { method in class:MIMEPartStreamingDataHandler.StreamingDataSource
90 return part.readOnce();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DDataHead.java34 * and {@link #readOnce} may trigger the actual parsing the message. In fact,
55 boolean readOnce; field in class:DataHead
59 * Used only for debugging. This records where readOnce() is called.
87 InputStream in = readOnce();
118 if (readOnce) {
119 throw new IllegalStateException("readOnce() is called before, read() cannot be called later.");
130 throw new IllegalStateException("Already read. Probably readOnce() is called before.");
136 * Used for an assertion. Returns true when readOnce() is not already called.
142 * @return true if readOnce() is not called before
146 AssertionError error = new AssertionError("readOnce() i
166 public InputStream readOnce() { method in class:DataHead
[all...]
H A DMIMEPart.java36 * and {@link #readOnce} may trigger the actual parsing the message. In fact,
78 * calling this, one shouldn't call {@link #read()} or {@link #readOnce()}
97 public InputStream readOnce() { method in class:MIMEPart
98 return dataHead.readOnce();

Completed in 31 milliseconds