// // $Id: CssBorderBottomColorCSS2.java,v 1.4 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.parser.CssPrinterStyle; import org.w3c.css.parser.CssStyle; import org.w3c.css.util.ApplContext; import org.w3c.css.util.InvalidParamException; import org.w3c.css.values.CssExpression; import org.w3c.css.values.CssValue; /** * Be careful, this is not a CSS1 property ! * @version $Revision: 1.4 $ */ public class CssBorderBottomColorCSS2 extends CssProperty { CssBorderFaceColorCSS2 face; /** * Create a new CssBorderBottomColorCSS2 */ public CssBorderBottomColorCSS2() { face = new CssBorderFaceColorCSS2(); } /** * Create a new CssBorderBottomColor with an another CssBorderFaceColor * * @param another An another face. */ public CssBorderBottomColorCSS2(CssBorderFaceColorCSS2 another) { setByUser(); face = another; } /** * Create a new CssBorderBottomColor * * @param expression The expression for this property. * @exception InvalidParamException Values are incorrect */ public CssBorderBottomColorCSS2(ApplContext ac, CssExpression expression, boolean check) throws InvalidParamException { if(check && expression.getCount() > 1) { throw new InvalidParamException("unrecognize", ac); } setByUser(); face = new CssBorderFaceColorCSS2(ac, expression); } public CssBorderBottomColorCSS2(ApplContext ac, CssExpression expression) throws InvalidParamException { this(ac, expression, false); } /** * Returns the value of this property */ public Object get() { return face; } /** * @return Returns the face. */ public CssBorderFaceColorCSS2 getFace() { return face; } /** * @param face The face to set. */ public void setFace(CssBorderFaceColorCSS2 face) { this.face = face; } /** * Returns the color of this property */ public CssValue getColor() { return face.getColor(); } /** * Returns a string representation of the object. */ public String toString() { return face.toString(); } /** * Returns the name of this property */ public String getPropertyName() { return "border-bottom-color"; } /** * Add this property to the CssStyle. * * @param style The CssStyle */ public void addToStyle(ApplContext ac, CssStyle style) { CssBorderBottomCSS2 bottom = ((Css1Style) style).cssBorderCSS2.bottom; if (bottom.color != null) style.addRedefinitionWarning(ac, this); bottom.color = this; } /** * Get this property in the style. * * @param style The style where the property is * @param resolve if true, resolve the style to find this property */ public CssProperty getPropertyInStyle(CssStyle style, boolean resolve) { if (resolve) { return ((Css1Style) style).getBorderBottomColorCSS2(); } else { return ((Css1Style) style).cssBorderCSS2.getBottom().color; } } /** * Compares two properties for equality. * * @param value The other property. */ public boolean equals(CssProperty property) { return (property instanceof CssBorderBottomColorCSS2 && face.equals(((CssBorderBottomColorCSS2) property).face)); } /** * Print this property. * * @param printer The printer. * @see #toString() * @see #getPropertyName() */ public void print(CssPrinterStyle printer) { if (face != null && !face.isDefault()) printer.print(this); } }