diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-09 04:26:17 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-09 04:26:17 +0000 |
commit | 71946bc3b406beb3d1fb9b447204e4236d645c43 (patch) | |
tree | cdf9958b411887bead2263ea8ef0bdfc8eae6319 /libjava/java/awt/PrintGraphics.java | |
parent | 0fc014c9ce8232f14be66144bf5a4c08a3e5ffe7 (diff) | |
download | ppe42-gcc-71946bc3b406beb3d1fb9b447204e4236d645c43.tar.gz ppe42-gcc-71946bc3b406beb3d1fb9b447204e4236d645c43.zip |
AWT/Swing merge from GNU Classpath.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56147 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/awt/PrintGraphics.java')
-rw-r--r-- | libjava/java/awt/PrintGraphics.java | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/libjava/java/awt/PrintGraphics.java b/libjava/java/awt/PrintGraphics.java index 3d1ee632682..4a65fcec510 100644 --- a/libjava/java/awt/PrintGraphics.java +++ b/libjava/java/awt/PrintGraphics.java @@ -1,5 +1,5 @@ -/* PrintGraphics.java -- A print graphics context. - Copyright (C) 1999 Free Software Foundation, Inc. +/* PrintGraphics.java -- a print graphics context + Copyright (C) 1999, 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -39,21 +39,19 @@ exception statement from your version. */ package java.awt; /** - * This interface allows the originating print job to be obtained. - * - * @author Aaron M. Renn (arenn@urbanophile.com) - */ + * This interface allows the originating print job to be obtained. + * + * @author Aaron M. Renn <arenn@urbanophile.com> + * @since 1.0 + * @status updated to 1.4 + */ public interface PrintGraphics { - -/** - * Returns the <code>PrintJob</code> that this object is being - * managed by. - * - * @return The print job for this object. - */ -public abstract PrintJob -getPrintJob(); - + /** + * Returns the <code>PrintJob</code> that this object is being + * managed by. + * + * @return the print job for this object + */ + PrintJob getPrintJob(); } // interface PrintGraphics - |