Package com.meterware.httpunit.parsing
Interface DocumentAdapter
-
public interface DocumentAdapter
- Author:
- Russell Gold
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getIncludedScript(java.lang.String srcAttribute)
Returns the contents of an included script, given its src attribute.ScriptingHandler
getScriptingHandler()
Returns the Scriptable object associated with the documentvoid
setDocument(org.w3c.dom.html.HTMLDocument document)
Records the root (Document) node.
-
-
-
Method Detail
-
setDocument
void setDocument(org.w3c.dom.html.HTMLDocument document)
Records the root (Document) node.
-
getIncludedScript
java.lang.String getIncludedScript(java.lang.String srcAttribute) throws java.io.IOException
Returns the contents of an included script, given its src attribute.- Parameters:
srcAttribute
- the relative URL for the included script- Returns:
- the contents of the script.
- Throws:
java.io.IOException
- if there is a problem retrieving the script
-
getScriptingHandler
ScriptingHandler getScriptingHandler()
Returns the Scriptable object associated with the document
-
-