You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ac...@apache.org on 2007/12/05 18:11:44 UTC

svn commit: r601415 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/properties/ColorProperty.java

Author: acumiskey
Date: Wed Dec  5 09:11:44 2007
New Revision: 601415

URL: http://svn.apache.org/viewvc?rev=601415&view=rev
Log:
Corrected javadocs

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/properties/ColorProperty.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/properties/ColorProperty.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/properties/ColorProperty.java?rev=601415&r1=601414&r2=601415&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/properties/ColorProperty.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/properties/ColorProperty.java Wed Dec  5 09:11:44 2007
@@ -103,12 +103,12 @@
     }
 
     /**
-     * 
-     * @param value
-     * @return
+     * Returns an instance of a color property given a color
+     * @param color the color value
+     * @return the color property
      */
-    public static ColorProperty getInstance(Color value) {
-        return (ColorProperty) cache.fetch(new ColorProperty(value));
+    public static ColorProperty getInstance(Color color) {
+        return (ColorProperty) cache.fetch(new ColorProperty(color));
     }
     
     /**



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org