Changeset 142:134426b2a536

Show
Ignore:
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:
1 modified

Legend:

Unmodified
Added
Removed
  • org/w3c/unicorn/response/Response.java

    r89 r142  
    1414    protected XMLGregorianCalendar date; 
    1515    protected Boolean passed; 
     16    protected StringBuffer xml; // the xml version of the response 
     17     
    1618    /** 
    1719     * Result aResult = mapOfLangURIResult.get("fr").get("http://w3.org/home.css") 
     
    241243        return xList; 
    242244    } 
     245     
     246    public void setXml(StringBuffer xmlString) { 
     247        this.xml = xmlString; 
     248    } 
     249     
     250    public StringBuffer getXml() { 
     251        return this.xml; 
     252    } 
    243253}