// // $Id: CssBorderBottomStyleCSS1.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.parser.CssStyle; import org.w3c.css.util.ApplContext; import org.w3c.css.util.InvalidParamException; import org.w3c.css.values.CssExpression; /** * Be careful, this is not a CSS1 property ! * @version $Revision: 1.3 $ */ public class CssBorderBottomStyleCSS1 extends CssProperty { CssBorderFaceStyleCSS1 face; /** * Create a new CssBorderBottomStyleCSS1 */ public CssBorderBottomStyleCSS1() { face = new CssBorderFaceStyleCSS1(); } /** * Create a new CssBorderBottomStyleCSS1 with an another CssBorderFaceStyleCSS1 * @param another The another side. */ public CssBorderBottomStyleCSS1(CssBorderFaceStyleCSS1 another) { setByUser(); face = another; } /** * Create a new CssBorderBottomStyle eith an expression * * @param expression The expression for this property. * @exception InvalidParamException Values are incorrect */ public CssBorderBottomStyleCSS1(ApplContext ac, CssExpression expression, boolean check) throws InvalidParamException { if(check && expression.getCount() > 1) { throw new InvalidParamException("unrecognize", ac); } setByUser(); face = new CssBorderFaceStyleCSS1(ac, expression); } public CssBorderBottomStyleCSS1(ApplContext ac, CssExpression expression) throws InvalidParamException { this(ac, expression, false); } /** * Returns the value of this property */ public Object get() { return face; } /** * Returns the value */ public String getStyle() { if(face != null) { return face.getStyle(); } return null; } /** * Returns a string representation of the object. */ public String toString() { if(face != null) { return face.toString(); } return ""; } /** * Returns the name of this property */ public String getPropertyName() { return "border-bottom-style"; } /** * Add this property to the CssStyle. * * @param style The CssStyle */ public void addToStyle(ApplContext ac, CssStyle style) { CssBorderBottomCSS1 bottom = ((Css1Style) style).cssBorderCSS1.bottom; if (bottom.style != null) style.addRedefinitionWarning(ac, this); bottom.style = 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).getBorderBottomStyleCSS1(); } else { return ((Css1Style) style).cssBorderCSS1.getBottom().style; } } /** * Compares two properties for equality. * * @param value The other property. */ public boolean equals(CssProperty property) { return (property instanceof CssBorderBottomStyleCSS1 && face.equals(((CssBorderBottomStyleCSS1) property).face)); } }