Changeset 142:134426b2a536
- Timestamp:
- 08/29/08 11:56:19 (5 years ago)
- Author:
- jbarouh
- Branch:
- default
- convert_revision:
- svn:cdcfb263-7567-472c-a848-e2c2df3466e7/trunk@143
- Message:
-
Adds the xml attribute
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r89
|
r142
|
|
| 14 | 14 | protected XMLGregorianCalendar date; |
| 15 | 15 | protected Boolean passed; |
| | 16 | protected StringBuffer xml; // the xml version of the response |
| | 17 | |
| 16 | 18 | /** |
| 17 | 19 | * Result aResult = mapOfLangURIResult.get("fr").get("http://w3.org/home.css") |
| … |
… |
|
| 241 | 243 | return xList; |
| 242 | 244 | } |
| | 245 | |
| | 246 | public void setXml(StringBuffer xmlString) { |
| | 247 | this.xml = xmlString; |
| | 248 | } |
| | 249 | |
| | 250 | public StringBuffer getXml() { |
| | 251 | return this.xml; |
| | 252 | } |
| 243 | 253 | } |