From: Adrian Cumiskey Date: Wed, 5 Dec 2007 17:11:44 +0000 (+0000) Subject: Corrected javadocs X-Git-Tag: fop-0_95beta~253 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=58c04bf133a94a345185245b0cd2e29e489c6f45;p=xmlgraphics-fop.git Corrected javadocs git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@601415 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/fo/properties/ColorProperty.java b/src/java/org/apache/fop/fo/properties/ColorProperty.java index 853a965bb..d961ec3a3 100644 --- a/src/java/org/apache/fop/fo/properties/ColorProperty.java +++ b/src/java/org/apache/fop/fo/properties/ColorProperty.java @@ -103,12 +103,12 @@ public final class ColorProperty extends Property { } /** - * - * @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)); } /**