git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@601415
13f79535-47bb-0310-9956-
ffa450edef68
}
/**
- *
- * @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));
}
/**