- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 11 Sep 2011 20:30:24 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css
In directory hutz:/tmp/cvs-serv9379/org/w3c/css/properties/css
Modified Files:
CssAzimuth.java
Added Files:
CssElevation.java
Log Message:
moved 'elevation' added @spec keywork in files with link to the spec it followed
Index: CssAzimuth.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssAzimuth.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssAzimuth.java 10 Sep 2011 14:20:13 -0000 1.2
+++ CssAzimuth.java 11 Sep 2011 20:30:22 -0000 1.3
@@ -7,7 +7,7 @@
package org.w3c.css.properties.css;
import org.w3c.css.parser.CssStyle;
-import org.w3c.css.properties.css1.Css1Style;
+import org.w3c.css.properties.css2.Css2Style;
import org.w3c.css.util.ApplContext;
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.values.CssExpression;
@@ -81,9 +81,9 @@
* @param style The CssStyle
*/
public void addToStyle(ApplContext ac, CssStyle style) {
- if (((Css1Style) style).cssAzimuth != null)
+ if (((Css2Style) style).cssAzimuth != null)
style.addRedefinitionWarning(ac, this);
- ((Css1Style) style).cssAzimuth = this;
+ ((Css2Style) style).cssAzimuth = this;
}
/**
@@ -105,9 +105,9 @@
*/
public CssProperty getPropertyInStyle(CssStyle style, boolean resolve) {
if (resolve) {
- return ((Css1Style) style).getAzimuth();
+ return ((Css2Style) style).getAzimuth();
} else {
- return ((Css1Style) style).cssAzimuth;
+ return ((Css2Style) style).cssAzimuth;
}
}
}
--- NEW FILE: CssElevation.java ---
//
// $Id: CssElevation.java,v 1.1 2011/09/11 20:30:22 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.css;
import org.w3c.css.parser.CssStyle;
import org.w3c.css.properties.css2.Css2Style;
import org.w3c.css.util.ApplContext;
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.values.CssExpression;
import org.w3c.css.values.CssValue;
/**
* @version $Revision: 1.1 $
*/
public class CssElevation extends CssProperty {
CssValue value;
/**
* Create a new CssElevation
*/
public CssElevation() {
}
/**
* Creates a new ACssElevation
*
* @param expression The expression for this property
* @throws org.w3c.css.util.InvalidParamException
* Values are incorrect
*/
public CssElevation(ApplContext ac, CssExpression expression,
boolean check) throws InvalidParamException {
throw new InvalidParamException("unrecognize", ac);
}
public CssElevation(ApplContext ac, CssExpression expression)
throws InvalidParamException {
this(ac, expression, false);
}
/**
* Returns the value of this property
*/
public Object get() {
return value;
}
/**
* Returns the name of this property
*/
public final String getPropertyName() {
return "elevation";
}
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
*/
public boolean isSoftlyInherited() {
return value.equals(inherit);
}
/**
* Returns a string representation of the object.
*/
public String toString() {
return value.toString();
}
/**
* Add this property to the CssStyle.
*
* @param style The CssStyle
*/
public void addToStyle(ApplContext ac, CssStyle style) {
if (((Css2Style) style).cssElevation != null)
style.addRedefinitionWarning(ac, this);
((Css2Style) style).cssElevation = this;
}
/**
* Compares two properties for equality.
*
* @param property The other property.
*/
public boolean equals(CssProperty property) {
return (property instanceof CssElevation &&
value.equals(((CssElevation) property).value));
}
/**
* 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 ((Css2Style) style).getElevation();
} else {
return ((Css2Style) style).cssElevation;
}
}
}
Received on Sunday, 11 September 2011 20:30:30 UTC