This patch (committed) removes a note in the API docs about the Graphics2D API not being fully implemented (I put this note in back when Graphics2D didn't really work that well - it does now):

2006-07-18  David Gilbert  <[EMAIL PROTECTED]>

        * java/awt/Graphics2D.java: API docs updated.

Regards,

Dave
Index: java/awt/Graphics2D.java
===================================================================
RCS file: /sources/classpath/classpath/java/awt/Graphics2D.java,v
retrieving revision 1.11
diff -u -r1.11 Graphics2D.java
--- java/awt/Graphics2D.java    27 May 2006 20:52:27 -0000      1.11
+++ java/awt/Graphics2D.java    18 Jul 2006 03:35:55 -0000
@@ -53,23 +53,21 @@
 /**
  * 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 [EMAIL PROTECTED] javax.swing.JComponent} - in the 
  *     [EMAIL PROTECTED] javax.swing.JComponent#paint(Graphics)} method, the 
incoming 
  *     [EMAIL PROTECTED] Graphics} should always be an instance of 
- *     <code>Graphics2D</code> (*);</li> 
+ *     <code>Graphics2D</code>;</li> 
  * <li>a [EMAIL PROTECTED] BufferedImage} - see 
- *     [EMAIL PROTECTED] BufferedImage#createGraphics()} (*);</li>
+ *     [EMAIL PROTECTED] BufferedImage#createGraphics()};</li>
  * <li>a [EMAIL PROTECTED] java.awt.print.PrinterJob} - in the 
  *     [EMAIL PROTECTED] Printable#print(Graphics, PageFormat, int)} method, 
the incoming
- *     [EMAIL PROTECTED] Graphics} should always be an instance of 
<code>Graphics2D</code>
- *     (*).</li>
+ *     [EMAIL PROTECTED] 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).

Reply via email to