diff options
Diffstat (limited to 'libjava/java/awt/print/Printable.java')
| -rw-r--r-- | libjava/java/awt/print/Printable.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/awt/print/Printable.java b/libjava/java/awt/print/Printable.java index 8f3d0b64e9e..fecc01a9d37 100644 --- a/libjava/java/awt/print/Printable.java +++ b/libjava/java/awt/print/Printable.java @@ -58,13 +58,13 @@ public interface Printable * This value is returned by the <code>print()</code> method to indicate * that the requested page number does not exist. */ -public static final int NO_SUCH_PAGE = 0; +int NO_SUCH_PAGE = 0; /** * This value is returned by the <code>print()</code> method to indicate * that the requested page exists and has been printed. */ -public static final int PAGE_EXISTS = 1; +int PAGE_EXISTS = 1; /*************************************************************************/ @@ -82,7 +82,7 @@ public static final int PAGE_EXISTS = 1; * * @exception PrinterException If an error occurs during printing. */ -public abstract int +int print(Graphics graphics, PageFormat format, int page_number) throws PrinterException; |

