summaryrefslogtreecommitdiff
path: root/javax/print/StreamPrintService.java
diff options
context:
space:
mode:
Diffstat (limited to 'javax/print/StreamPrintService.java')
-rw-r--r--javax/print/StreamPrintService.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/javax/print/StreamPrintService.java b/javax/print/StreamPrintService.java
index 8398a734c..4b82ef767 100644
--- a/javax/print/StreamPrintService.java
+++ b/javax/print/StreamPrintService.java
@@ -46,21 +46,21 @@ import java.io.OutputStream;
* printing into a supplied output stream.
* <p>
* Beside providing the same functionality as a print service it additionally
- * allows to specify the output stream for the print data. A stream print
- * service is obtained via the {@link javax.print.StreamPrintServiceFactory}
+ * allows to specify the output stream for the print data. A stream print
+ * service is obtained via the {@link javax.print.StreamPrintServiceFactory}
* by looking for services supporting a given output format type.
* </p>
- *
+ *
* @author Michael Koch (konqueror@gmx.de)
*/
public abstract class StreamPrintService implements PrintService
{
private boolean disposed;
private OutputStream out;
-
+
/**
* Constructs a <code>StreamPrintService</code> object.
- *
+ *
* @param out the <code>OutputStream</code> to use
*/
protected StreamPrintService(OutputStream out)
@@ -78,16 +78,16 @@ public abstract class StreamPrintService implements PrintService
/**
* Returns the document format emitted by this print service.
- * The returned string is a MIME type compatible with the
+ * The returned string is a MIME type compatible with the
* {@link DocFlavor} class.
- *
+ *
* @return The document format of the output.
*/
public abstract String getOutputFormat();
/**
* Returns the <code>OutputStream</code> of this object.
- *
+ *
* @return The <code>OutputStream</code>
*/
public OutputStream getOutputStream()
@@ -97,7 +97,7 @@ public abstract class StreamPrintService implements PrintService
/**
* Determines if this <code>StreamPrintService</code> object is disposed.
- *
+ *
* @return <code>true</code> if disposed already,
* otherwise <code>false</code>
*/
@@ -105,4 +105,4 @@ public abstract class StreamPrintService implements PrintService
{
return disposed;
}
-} \ No newline at end of file
+}