// // $Id: CssBorderFaceColor.java,v 1.3 2005/09/14 15:14:31 ylafon Exp $ // From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr) // // (c) COPYRIGHT MIT and INRIA, 1997. // Please first read the full copyright statement in file COPYRIGHT.html package org.w3c.css.properties.css1; import org.w3c.css.util.ApplContext; import org.w3c.css.util.InvalidParamException; import org.w3c.css.values.CssExpression; import org.w3c.css.values.CssIdent; import org.w3c.css.values.CssValue; /** * @version $Revision: 1.3 $ */ public class CssBorderFaceColor { CssValue face; CssIdent transparent = new CssIdent("transparent"); /** * Create a new CssBorderFaceColor */ public CssBorderFaceColor() { //face = new org.w3c.css.values.CssColor(); } /** * Create a new CssBorderFaceColor with a color property. * * @param color A color property */ public CssBorderFaceColor(org.w3c.css.properties.css1.CssColor color) { face = color.color; } /** * Create a new CssBorderFaceColor with an another CssBorderFaceColor * * @param another An another face. */ public CssBorderFaceColor(CssBorderFaceColor another) { face = another.face; } /** * Create a new CssBorderFaceColor with an expression * * @param expression The expression for this property. * @exception InvalidParamException color is not a color */ public CssBorderFaceColor(ApplContext ac, CssExpression expression, boolean check) throws InvalidParamException { if(check && expression.getCount() > 1) { throw new InvalidParamException("unrecognize", ac); } CssValue val = expression.getValue(); if (val instanceof org.w3c.css.values.CssColor) { face = val; } else if (val.equals(CssProperty.inherit)) { face = CssProperty.inherit; } else if (val instanceof CssIdent) { if (val.equals(transparent)) { face = transparent; } else { face = new org.w3c.css.values.CssColor(ac, (String) val.get()); } } else { throw new InvalidParamException("value", val.toString(), "border-color", ac); } expression.next(); } public CssBorderFaceColor(ApplContext ac, CssExpression expression) throws InvalidParamException { this(ac, expression, false); } /** * Returns the internal color */ public CssValue getColor() { return face; } /** * Is the value of this face is a default value. * It is used by all macro for the function print */ public boolean isDefault() { return false; // @@ FIXME face.isDefault(); } /** * Returns a string representation of the object. */ public String toString() { if (face != null) { return face.toString(); } else { return ""; } } /** * Compares two faces for equality. * * @param value The another faces. */ public boolean equals(CssBorderFaceColor color) { if (this.face == null) { return (color.face == null); } return this.face.equals(color.face); } }