aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/javax/print/event/PrintJobAdapter.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/javax/print/event/PrintJobAdapter.java')
-rw-r--r--libjava/classpath/javax/print/event/PrintJobAdapter.java34
1 files changed, 17 insertions, 17 deletions
diff --git a/libjava/classpath/javax/print/event/PrintJobAdapter.java b/libjava/classpath/javax/print/event/PrintJobAdapter.java
index 9229d19..e8e7100 100644
--- a/libjava/classpath/javax/print/event/PrintJobAdapter.java
+++ b/libjava/classpath/javax/print/event/PrintJobAdapter.java
@@ -1,4 +1,4 @@
-/* PrintJobAdapter.java --
+/* PrintJobAdapter.java --
Copyright (C) 2004, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -43,7 +43,7 @@ package javax.print.event;
* classes. The methods in this class do nothing by default. Subclasses may
* only implement the methods for the {@link javax.print.event.PrintJobEvent}s
* they are interested in.
- *
+ *
* @author Michael Koch (konqueror@gmx.de)
*/
public abstract class PrintJobAdapter
@@ -56,13 +56,13 @@ public abstract class PrintJobAdapter
{
// Do nothing here.
}
-
+
/**
* Called to notify the client that all data has been successfully transferred
* to the print service.
* <p>The default implementation does nothing.</p>
- *
- * @param event the event.
+ *
+ * @param event the event.
*/
public void printDataTransferCompleted(PrintJobEvent event)
{
@@ -70,10 +70,10 @@ public abstract class PrintJobAdapter
}
/**
- * Called to notify the client that a print job was canceled.
+ * Called to notify the client that a print job was canceled.
* <p>The default implementation does nothing.</p>
- *
- * @param event the event.
+ *
+ * @param event the event.
*/
public void printJobCanceled(PrintJobEvent event)
{
@@ -83,8 +83,8 @@ public abstract class PrintJobAdapter
/**
* Called to notify the client that a print job was successfully completed.
* <p>The default implementation does nothing.</p>
- *
- * @param event the event.
+ *
+ * @param event the event.
*/
public void printJobCompleted(PrintJobEvent event)
{
@@ -95,8 +95,8 @@ public abstract class PrintJobAdapter
* Called to notify the client that a print job failed to complete
* successfully.
* <p>The default implementation does nothing.</p>
- *
- * @param event the event.
+ *
+ * @param event the event.
*/
public void printJobFailed(PrintJobEvent event)
{
@@ -106,8 +106,8 @@ public abstract class PrintJobAdapter
/**
* Called to notify the client that no more job events will be send.
* <p>The default implementation does nothing.</p>
- *
- * @param event the event.
+ *
+ * @param event the event.
*/
public void printJobNoMoreEvents(PrintJobEvent event)
{
@@ -116,11 +116,11 @@ public abstract class PrintJobAdapter
/**
* Called to notify the client that a problem occured during printing.
- * This event signals problems a user might be able to fix
+ * This event signals problems a user might be able to fix
* (e.g. out of paper or paper jam).
* <p>The default implementation does nothing.</p>
- *
- * @param event the event.
+ *
+ * @param event the event.
*/
public void printJobRequiresAttention(PrintJobEvent event)
{