
w3c.css.properties.atsc.CssBorderTopStyleATSC Maven / Gradle / Ivy
//
// $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;
/**
* Be careful, this is not a CSS1 property !
*
* @version $Revision$
*/
public class CssBorderTopStyleATSC extends CssProperty {
CssBorderFaceStyleATSC face;
/**
* Create a new CssBorderTopStyleATSC
*/
public CssBorderTopStyleATSC() {
face = new CssBorderFaceStyleATSC();
}
/**
* Create a new CssBorderTopStyleATSC with an another CssBorderFaceStyleATSC
*
* @param another The another side.
*/
public CssBorderTopStyleATSC(CssBorderFaceStyleATSC another) {
setByUser();
face = another;
}
/**
* Create a new CssBorderTopStyleATSC
*
* @param expression The expression for this property
* @throws InvalidParamException Values are incorrect
*/
public CssBorderTopStyleATSC(ApplContext ac, CssExpression expression,
boolean check) throws InvalidParamException {
if (check && expression.getCount() > 1) {
throw new InvalidParamException("unrecognize", ac);
}
setByUser();
face = new CssBorderFaceStyleATSC(ac, expression);
}
public CssBorderTopStyleATSC(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() {
return face.getStyle();
}
/**
* Returns a string representation of the object.
*/
public String toString() {
return face.toString();
}
/**
* Returns the name of this property
*/
public String getPropertyName() {
return "border-top-style";
}
/**
* Add this property to the CssStyle.
*
* @param style The CssStyle
*/
public void addToStyle(ApplContext ac, CssStyle style) {
CssBorderTopATSC top = ((ATSCStyle) style).cssBorderATSC.getTop();
if (top.getStyle() != null)
style.addRedefinitionWarning(ac, this);
top.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 ((ATSCStyle) style).getBorderTopStyleATSC();
} else {
return ((ATSCStyle) style).cssBorderATSC.getTop().style;
}
}
/**
* Compares two properties for equality.
*
* @param value The other property.
*/
public boolean equals(CssProperty property) {
return (property instanceof CssBorderTopStyleATSC &&
face.equals(((CssBorderTopStyleATSC) property).face));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy