- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 01 Sep 2005 11:51:23 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2/table
In directory hutz:/tmp/cvs-serv16812/org/w3c/css/properties/css2/table
Modified Files:
CaptionSide.java
Log Message:
>From Jean-Guilhem Rouel:
CSS 2.1 first implementation
Index: CaptionSide.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css2/table/CaptionSide.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CaptionSide.java 23 Aug 2005 16:33:50 -0000 1.1
+++ CaptionSide.java 1 Sep 2005 11:51:21 -0000 1.2
@@ -24,10 +24,10 @@
CssValue value;
- private static CssIdent top = new CssIdent("top");
- private static CssIdent bottom = new CssIdent("bottom");
- private static CssIdent right = new CssIdent("right");
- private static CssIdent left = new CssIdent("left");
+ protected static CssIdent top = new CssIdent("top");
+ protected static CssIdent bottom = new CssIdent("bottom");
+ protected static CssIdent right = new CssIdent("right");
+ protected static CssIdent left = new CssIdent("left");
/**
* Create a new CaptionSide
@@ -77,6 +77,20 @@
}
/**
+ * @return Returns the value.
+ */
+ public CssValue getValue() {
+ return value;
+ }
+
+ /**
+ * @param value The value to set.
+ */
+ public void setValue(CssValue value) {
+ this.value = value;
+ }
+
+ /**
* Returns the current value
*/
public Object get() {
Received on Thursday, 1 September 2005 11:51:27 UTC