summaryrefslogtreecommitdiff
path: root/java/awt/Graphics2D.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/awt/Graphics2D.java')
-rw-r--r--java/awt/Graphics2D.java12
1 files changed, 5 insertions, 7 deletions
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).