- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 18 Sep 2009 15:19:46 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/response
In directory hutz:/tmp/cvs-serv6164/src/org/w3c/unicorn/response
Modified Files:
Response.java
Log Message:
added 'rating' variable to the Response object
Index: Response.java
===================================================================
RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/response/Response.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Response.java 14 Sep 2009 12:12:06 -0000 1.4
+++ Response.java 18 Sep 2009 15:19:44 -0000 1.5
@@ -21,6 +21,8 @@
protected StringBuilder xml; // the xml version of the response
protected String requestUri;
+
+ protected int rating;
/**
* Result aResult =
@@ -288,6 +290,13 @@
public void setRequestUri(String requestUri) {
this.requestUri = requestUri;
}
-
+
+ public int getRating() {
+ return rating;
+ }
+
+ public void setRating(int rating) {
+ this.rating = rating;
+ }
}
Received on Friday, 18 September 2009 15:19:55 UTC