com.gargoylesoftware.htmlunit
Class StringWebResponse

java.lang.Object
  extended by com.gargoylesoftware.htmlunit.WebResponse
      extended by com.gargoylesoftware.htmlunit.StringWebResponse
All Implemented Interfaces:
Serializable

public class StringWebResponse
extends WebResponse

A simple WebResponse created from a string. Content is assumed to be of type text/html.

Version:
$Revision: 6720 $
Author:
Mike Bowler, Marc Guillemot, Brad Clarke, Ahmed Ashour, Ronald Brill
See Also:
Serialized Form

Constructor Summary
StringWebResponse(String content, String charset, URL originatingURL)
          Creates an instance associated with the specified originating URL.
StringWebResponse(String content, URL originatingURL)
          Creates an instance associated with the specified originating URL.
 
Method Summary
 boolean isFromJavascript()
          Returns the fromJavascript property.
 void setFromJavascript(boolean fromJavascript)
          Sets the fromJavascript_ property.
 
Methods inherited from class com.gargoylesoftware.htmlunit.WebResponse
cleanUp, getContentAsStream, getContentAsString, getContentAsString, getContentCharset, getContentCharsetOrNull, getContentType, getLoadTime, getResponseHeaders, getResponseHeaderValue, getStatusCode, getStatusMessage, getWebRequest
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StringWebResponse

public StringWebResponse(String content,
                         URL originatingURL)
Creates an instance associated with the specified originating URL.

Parameters:
content - the content to return
originatingURL - the URL that this should be associated with

StringWebResponse

public StringWebResponse(String content,
                         String charset,
                         URL originatingURL)
Creates an instance associated with the specified originating URL.

Parameters:
content - the content to return
charset - the charset used to convert the content
originatingURL - the URL that this should be associated with
Method Detail

isFromJavascript

public boolean isFromJavascript()
Returns the fromJavascript property. This is true, if the response was created from javascript (usually document.write).

Returns:
the from fromJavascript_

setFromJavascript

public void setFromJavascript(boolean fromJavascript)
Sets the fromJavascript_ property. Set this to true, if the response was created from javascript (usually document.write).

Parameters:
fromJavascript - the new fromJavascript


Copyright © 2002-2012 Gargoyle Software Inc.. All Rights Reserved.