import java.awt.color.ColorSpace;
import java.util.Arrays;
+import org.apache.xmlgraphics.java2d.color.ColorWithAlternatives;
+
/**
* Color helper class.
* <p>
* This class extends java.awt.Color class keeping track of the original color
* property values specified by the fo user in a rgb-icc call.
- * @deprecated Replaced by {@link ColorWithFallback}
+ * @deprecated Replaced by {@link ColorWithAlternatives}
*/
+@Deprecated
public final class ColorExt extends Color {
//
private static final long serialVersionUID = 1L;
}
/** {@inheritDoc} */
+ @Override
public int hashCode() {
//implementation from the superclass should be good enough for our purposes
return super.hashCode();
}
/** {@inheritDoc} */
+ @Override
public boolean equals(Object obj) {
if (this == obj) {
return true;