- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 11 Sep 2011 20:30:25 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2
In directory hutz:/tmp/cvs-serv9379/org/w3c/css/properties/css2
Modified Files:
Css2Style.java CssAzimuth.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/css2/CssAzimuth.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- CssAzimuth.java 10 Sep 2011 20:24:46 -0000 1.3
+++ CssAzimuth.java 11 Sep 2011 20:30:23 -0000 1.4
@@ -16,7 +16,7 @@
import org.w3c.css.values.CssValue;
/**
- * http://www.w3.org/TR/2008/REC-CSS2-20080411/aural.html#propdef-azimuth
+ * @spec http://www.w3.org/TR/2008/REC-CSS2-20080411/aural.html#propdef-azimuth
*
* @version $Revision$
*/
Index: Css2Style.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css2/Css2Style.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Css2Style.java 9 Sep 2011 12:16:45 -0000 1.4
+++ Css2Style.java 11 Sep 2011 20:30:23 -0000 1.5
@@ -13,5 +13,37 @@
*/
public class Css2Style extends ACssStyle {
+ /**
+ * aural properties
+ */
+ public org.w3c.css.properties.css.CssAzimuth cssAzimuth;
+ public org.w3c.css.properties.css.CssElevation cssElevation;
+
+ /**
+ * aural properties
+ *
+ */
+
+ /**
+ * Get the azimuth
+ */
+ public org.w3c.css.properties.css.CssAzimuth getAzimuth() {
+ if (cssAzimuth == null) {
+ cssAzimuth = (org.w3c.css.properties.css.CssAzimuth) style.CascadingOrder(new org.w3c.css.properties.css.CssAzimuth(),
+ style, selector);
+ }
+ return cssAzimuth;
+ }
+
+ /**
+ * Get the elevation
+ */
+ public org.w3c.css.properties.css.CssElevation getElevation() {
+ if (cssElevation == null) {
+ cssElevation = (org.w3c.css.properties.css.CssElevation) style.CascadingOrder(new org.w3c.css.properties.css.CssElevation(),
+ style, selector);
+ }
+ return cssElevation;
+ }
}
Received on Sunday, 11 September 2011 20:30:28 UTC