diff options
Diffstat (limited to 'libjava/classpath/javax/print/MultiDoc.java')
-rw-r--r-- | libjava/classpath/javax/print/MultiDoc.java | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/libjava/classpath/javax/print/MultiDoc.java b/libjava/classpath/javax/print/MultiDoc.java index 6e9ec84..40a83ab 100644 --- a/libjava/classpath/javax/print/MultiDoc.java +++ b/libjava/classpath/javax/print/MultiDoc.java @@ -46,30 +46,30 @@ import java.io.IOException; * documents for use in a print job. * <p> * Implementations of this interface are used to pass multiple documents, to be - * printed as one print job, to the <code>MultiDocPrintJob</code> instance. + * printed as one print job, to the <code>MultiDocPrintJob</code> instance. * </p><p> - * There exists no implementation of this interface in the Java Print Service + * There exists no implementation of this interface in the Java Print Service * API. Implementors may assume the following usage in print jobs and the needed - * behaviour for implementations: The print job fetches the single documents via - * iteration by consecutive calls of the {@link #getDoc()} method to obtain the - * current document follwing calls of the {@link #next()} method to get the next + * behaviour for implementations: The print job fetches the single documents via + * iteration by consecutive calls of the {@link #getDoc()} method to obtain the + * current document follwing calls of the {@link #next()} method to get the next * multidoc object for the next <code>getDoc()</code> method call (if returned - * multidoc object is not <code>null</code>). The print service will fetch the - * document object and then retrieve the print data from the document before it + * multidoc object is not <code>null</code>). The print service will fetch the + * document object and then retrieve the print data from the document before it * proceeds with the next call for the next MultiDoc object in the sequence. * </p><p> * Implementations of this interface have to be multiple thread-safe. * </p> - * + * * @author Michael Koch (konqueror@gmx.de) */ public interface MultiDoc { /** * Returns the current document. - * + * * @return The current document. - * + * * @throws IOException if an error occurs */ Doc getDoc() throws IOException; @@ -77,11 +77,11 @@ public interface MultiDoc /** * Returns the next <code>MultiDoc</code> object that contains the * next document for retrieval. - * + * * @return The next <code>MultiDoc</code> object, or <code>null</code> * if no more documents are available. - * + * * @throws IOException if an error occurs */ MultiDoc next() throws IOException; -}
\ No newline at end of file +} |