summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gilbert <david.gilbert@object-refinery.com>2006-07-18 03:38:47 +0000
committerDavid Gilbert <david.gilbert@object-refinery.com>2006-07-18 03:38:47 +0000
commitdc60e8cb3ffaa8c4c9f5d96b19eac44f7038ead8 (patch)
treedb0b828a72c2a3a0e600e9c232df6d4073c1d75f
parent4775cbb5eb8dafc13ad01af56b687b68fee9c83a (diff)
downloadclasspath-dc60e8cb3ffaa8c4c9f5d96b19eac44f7038ead8.tar.gz
2006-07-18 David Gilbert <david.gilbert@object-refinery.com>
* java/awt/Graphics2D.java: API docs updated. ----------------------------------------------------------------------
-rw-r--r--ChangeLog4
-rw-r--r--java/awt/Graphics2D.java12
2 files changed, 9 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 1b2dd40bd..a0895dfbc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2006-07-18 David Gilbert <david.gilbert@object-refinery.com>
+ * java/awt/Graphics2D.java: API docs updated.
+
+2006-07-18 David Gilbert <david.gilbert@object-refinery.com>
+
* java/awt/image/WritableRaster.java: Added API docs and reformatted
source code.
diff --git a/java/awt/Graphics2D.java b/java/awt/Graphics2D.java
index b3ecbc58a..ada13edc5 100644
--- a/java/awt/Graphics2D.java
+++ b/java/awt/Graphics2D.java
@@ -53,23 +53,21 @@ import java.util.Map;
/**
* An abstract class defining a device independent two-dimensional vector
* graphics API. Concrete subclasses implement this API for output of
- * vector graphics to: (*)
+ * vector graphics to:
* <p>
* <ul>
* <li>a {@link javax.swing.JComponent} - in the
* {@link javax.swing.JComponent#paint(Graphics)} method, the incoming
* {@link Graphics} should always be an instance of
- * <code>Graphics2D</code> (*);</li>
+ * <code>Graphics2D</code>;</li>
* <li>a {@link BufferedImage} - see
- * {@link BufferedImage#createGraphics()} (*);</li>
+ * {@link BufferedImage#createGraphics()};</li>
* <li>a {@link java.awt.print.PrinterJob} - in the
* {@link Printable#print(Graphics, PageFormat, int)} method, the incoming
- * {@link Graphics} should always be an instance of <code>Graphics2D</code>
- * (*).</li>
+ * {@link Graphics} should always be an instance of
+ * <code>Graphics2D</code>.</li>
* </ul>
* <p>
- * (*) Support for this API is not fully implemented in GNU Classpath yet.
- * <p>
* Third party libraries provide support for output to other formats via this
* API, including encapsulated postscript (EPS), portable document format (PDF),
* and scalable vector graphics (SVG).