2002/css-validator/org/w3c/css/values CssPercentage.java,1.6,1.7

Update of /sources/public/2002/css-validator/org/w3c/css/values
In directory hutz:/tmp/cvs-serv9443

Modified Files:
	CssPercentage.java 
Log Message:
accessor for float value


Index: CssPercentage.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssPercentage.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- CssPercentage.java	25 Mar 2008 18:30:11 -0000	1.6
+++ CssPercentage.java	5 Mar 2009 18:02:21 -0000	1.7
@@ -99,6 +99,13 @@
     }
 
     /**
+     * Returns the value as a float
+     */
+    public float getValue() {
+	return value.floatValue();
+    }
+
+    /**
      * Returns a string representation of the object.
      */
     public String toString() {

Received on Thursday, 5 March 2009 18:02:33 UTC