Uses of Class
org.htmlunit.SgmlPage
-
Packages that use SgmlPage Package Description org.htmlunit Framework classes (contains theWebClient
class which is the main entry point).org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPage
which represents an HTML document and provides access to its content.org.htmlunit.util Miscellaneous utilities.org.htmlunit.xml Classes specific to XML pages. -
-
Uses of SgmlPage in org.htmlunit
Methods in org.htmlunit that return SgmlPage Modifier and Type Method Description protected SgmlPage
SgmlPage. clone()
Creates a clone of this instance.protected SgmlPage
DefaultPageCreator. createXmlPage(WebResponse webResponse, WebWindow webWindow)
Creates an SgmlPage for this WebResponse.SgmlPage
SgmlPage. getPage()
Returns the page that contains this node. -
Uses of SgmlPage in org.htmlunit.html
Subclasses of SgmlPage in org.htmlunit.html Modifier and Type Class Description class
HtmlPage
A representation of an HTML page returned from a server.class
XHtmlPage
A representation of an XHTML page returned from a server.Methods in org.htmlunit.html that return SgmlPage Modifier and Type Method Description SgmlPage
DomNode. getPage()
Returns the page that contains this node.Methods in org.htmlunit.html with parameters of type SgmlPage Modifier and Type Method Description HtmlElement
DefaultElementFactory. createElement(SgmlPage page, java.lang.String tagName, org.xml.sax.Attributes attributes)
DomElement
ElementFactory. createElement(SgmlPage page, java.lang.String tagName, org.xml.sax.Attributes attributes)
Creates an element according to this factory's specification.HtmlElement
UnknownElementFactory. createElement(SgmlPage page, java.lang.String tagName, org.xml.sax.Attributes attributes)
Creates an element according to this factory's specification.HtmlElement
DefaultElementFactory. createElementNS(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, org.xml.sax.Attributes attributes)
HtmlElement
DefaultElementFactory. createElementNS(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, org.xml.sax.Attributes attributes, boolean checkBrowserCompatibility)
DomElement
ElementFactory. createElementNS(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, org.xml.sax.Attributes attributes)
Creates an element according to this factory's specification.DomElement
ElementFactory. createElementNS(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, org.xml.sax.Attributes attributes, boolean checkBrowserCompatibility)
Creates an element according to this factory's specification.HtmlElement
UnknownElementFactory. createElementNS(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, org.xml.sax.Attributes attributes)
Creates an element according to this factory's specification.HtmlElement
UnknownElementFactory. createElementNS(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, org.xml.sax.Attributes attributes, boolean checkBrowserCompatibility)
Creates an element according to this factory's specification.void
XmlSerializer. save(SgmlPage page, java.io.File file)
Constructors in org.htmlunit.html with parameters of type SgmlPage Constructor Description BaseFrameElement(java.lang.String qualifiedName, SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes)
Creates an instance of BaseFrame.DomAttr(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, java.lang.String value, boolean specified)
Instantiate a new attribute.DomCDataSection(SgmlPage page, java.lang.String data)
Creates a new instance.DomCharacterData(SgmlPage page, java.lang.String data)
Creates an instance of DomCharacterData.DomComment(SgmlPage page, java.lang.String data)
Creates an instance of DomComment.DomDocumentFragment(SgmlPage page)
Creates a new instance.DomDocumentType(SgmlPage page, java.lang.String name, java.lang.String publicId, java.lang.String systemId)
Creates a new instance.DomElement(java.lang.String namespaceURI, java.lang.String qualifiedName, SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes)
Creates an instance of a DOM element that can have a namespace.DomNamespaceNode(java.lang.String namespaceURI, java.lang.String qualifiedName, SgmlPage page)
Creates an instance of a DOM node that can have a namespace.DomNode(SgmlPage page)
Creates a new instance.DomProcessingInstruction(SgmlPage page, java.lang.String target, java.lang.String data)
Creates a new instance.DomText(SgmlPage page, java.lang.String data)
Creates an instance of DomText.HtmlBody(java.lang.String qualifiedName, SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes, boolean temporary)
Creates a new instance.HtmlDivision(java.lang.String qualifiedName, SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes)
Creates an instance of HtmlDivision.HtmlElement(java.lang.String namespaceURI, java.lang.String qualifiedName, SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes)
Creates an instance of a DOM element that can have a namespace.HtmlElement(java.lang.String qualifiedName, SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes)
Creates an instance.HtmlInput(java.lang.String qualifiedName, SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes)
Creates an instance.HtmlInput(SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes)
Creates an instance.HtmlTableCell(java.lang.String qualifiedName, SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes)
Creates an instance.HtmlTime(java.lang.String qualifiedName, SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes)
Creates a new instance.TableRowGroup(java.lang.String qualifiedName, SgmlPage page, java.util.Map<java.lang.String,DomAttr> attributes)
Creates an instance of TableRowGroup. -
Uses of SgmlPage in org.htmlunit.util
Methods in org.htmlunit.util with parameters of type SgmlPage Modifier and Type Method Description static void
XmlUtils. appendChild(SgmlPage page, DomNode parent, org.w3c.dom.Node child, boolean handleXHTMLAsHTML)
Recursively appends aNode
child toDomNode
parent.static void
XmlUtils. appendChild(SgmlPage page, DomNode parent, org.w3c.dom.Node child, boolean handleXHTMLAsHTML, java.util.Map<java.lang.Integer,java.util.List<java.lang.String>> attributesOrderMap)
Recursively appends aNode
child toDomNode
parent. -
Uses of SgmlPage in org.htmlunit.xml
Subclasses of SgmlPage in org.htmlunit.xml Modifier and Type Class Description class
XmlPage
A page that will be returned for response with content type "text/xml".
-