2002/css-validator/org/w3c/css/properties/css2/user CursorCSS2.java,1.1,1.2

Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2/user
In directory hutz:/tmp/cvs-serv16812/org/w3c/css/properties/css2/user

Modified Files:
	CursorCSS2.java 
Log Message:
>From Jean-Guilhem Rouel:
CSS 2.1 first implementation




Index: CursorCSS2.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css2/user/CursorCSS2.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CursorCSS2.java	23 Aug 2005 16:33:51 -0000	1.1
+++ CursorCSS2.java	1 Sep 2005 11:51:21 -0000	1.2
@@ -103,9 +103,51 @@
     public CursorCSS2(ApplContext ac, CssExpression expression)
 	throws InvalidParamException {
 	this(ac, expression, false);
-    }
+    }    
     
     /**
+     * @return Returns the uris.
+     */
+    public Vector getUris() {
+        return uris;
+    }
+
+    /**
+     * @param uris The uris to set.
+     */
+    public void setUris(Vector uris) {
+        this.uris = uris;
+    }
+
+    /**
+     * @return Returns the value.
+     */
+    public int getValue() {
+        return value;
+    }
+
+    /**
+     * @param value The value to set.
+     */
+    public void setValue(int value) {
+        this.value = value;
+    }
+
+    /**
+     * @return Returns the inheritedValue.
+     */
+    public boolean isInheritedValue() {
+        return inheritedValue;
+    }
+
+    /**
+     * @param inheritedValue The inheritedValue to set.
+     */
+    public void setInheritedValue(boolean inheritedValue) {
+        this.inheritedValue = inheritedValue;
+    }
+
+    /**
      * Returns the value of this property
      */
     public Object get() {

Received on Thursday, 1 September 2005 11:51:26 UTC