w3c.css.properties.atsc.CssBorderLeftWidthATSC Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cssvalidator Show documentation
Show all versions of cssvalidator Show documentation
Backend for the W3C CSS Validation Service
//
// $Id$
// From Philippe Le Hegaret ([email protected])
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.atsc;
import org.w3c.css.parser.CssStyle;
import org.w3c.css.properties.css.CssProperty;
import org.w3c.css.util.ApplContext;
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.values.CssExpression;
import org.w3c.css.values.CssValue;
/**
*
* 'border-left-width'
*
*
* Value: thin | medium | thick | <length>
* Initial: 'medium'
* Applies to: all elements
* Inherited: no
* Percentage values: N/A
*
* This property sets the width of an element's left border. The width of the
* keyword values are UA dependent, but the following holds: 'thin' <= 'medium'
* <= 'thick'.
*
* The keyword widths are constant throughout a document:
*
* H1 { border: solid thick red }
* P { border: solid thick blue }
*
*
* In the example above, 'H1' and 'P' elements will have the same border width
* regardless of font size. To achieve relative widths, the 'em' unit can be
* used:
*
* H1 { border: solid 0.5em }
*
*
* Border widths cannot be negative.
*
* @version $Revision$
*/
public class CssBorderLeftWidthATSC extends CssProperty {
CssBorderFaceWidthATSC face;
/**
* Create a new CssBorderLeftWidthATSC
*/
public CssBorderLeftWidthATSC() {
face = new CssBorderFaceWidthATSC();
}
/**
* Create a new CssBorderLeftWidthATSC with an another CssBorderFaceWidthATSC
*
* @param another The another side.
*/
public CssBorderLeftWidthATSC(CssBorderFaceWidthATSC another) {
setByUser();
face = another;
}
/**
* Create a new CssBorderLeftWidthATSC
*
* @param expression The expression for this property.
* @throws InvalidParamException Values are incorrect
*/
public CssBorderLeftWidthATSC(ApplContext ac, CssExpression expression,
boolean check) throws InvalidParamException {
if (check && expression.getCount() > 1) {
throw new InvalidParamException("unrecognize", ac);
}
setByUser();
face = new CssBorderFaceWidthATSC(ac, expression);
}
public CssBorderLeftWidthATSC(ApplContext ac, CssExpression expression)
throws InvalidParamException {
this(ac, expression, false);
}
/**
* Returns the value of this property
*/
public Object get() {
return face;
}
/**
* Return the value of this property
*/
public CssValue getValue() {
return face.getValue();
}
/**
* Returns a string representation of the object.
*/
public String toString() {
return face.toString();
}
/**
* Returns the name of this property
*/
public String getPropertyName() {
return "border-left-width";
}
/**
* Add this property to the CssStyle.
*
* @param style The CssStyle
*/
public void addToStyle(ApplContext ac, CssStyle style) {
CssBorderLeftATSC left = ((ATSCStyle) style).cssBorderATSC.left;
if (left.width != null)
style.addRedefinitionWarning(ac, this);
left.width = 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 ((ATSCStyle) style).getBorderLeftWidthATSC();
} else {
return ((ATSCStyle) style).cssBorderATSC.getLeft().width;
}
}
/**
* Compares two properties for equality.
*
* @param value The other property.
*/
public boolean equals(CssProperty property) {
return (property instanceof CssBorderLeftWidthATSC &&
face.equals(((CssBorderLeftWidthATSC) property).face));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy