Uses of Class
org.htmlunit.SgmlPage
-
Packages that use SgmlPage Package Description org.htmlunit Framework classes (contains theWebClientclass which is the main entry point).org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPagewhich 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 SgmlPageSgmlPage. clone()Creates a clone of this instance.protected SgmlPageDefaultPageCreator. createXmlPage(WebResponse webResponse, WebWindow webWindow)Creates an SgmlPage for this WebResponse.SgmlPageSgmlPage. 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 classHtmlPageA representation of an HTML page returned from a server.classXHtmlPageA representation of an XHTML page returned from a server.Methods in org.htmlunit.html that return SgmlPage Modifier and Type Method Description SgmlPageDomNode. getPage()Returns the page that contains this node.Methods in org.htmlunit.html with parameters of type SgmlPage Modifier and Type Method Description HtmlElementDefaultElementFactory. createElement(SgmlPage page, java.lang.String tagName, org.xml.sax.Attributes attributes)DomElementElementFactory. createElement(SgmlPage page, java.lang.String tagName, org.xml.sax.Attributes attributes)Creates an element according to this factory's specification.HtmlElementUnknownElementFactory. createElement(SgmlPage page, java.lang.String tagName, org.xml.sax.Attributes attributes)Creates an element according to this factory's specification.HtmlElementDefaultElementFactory. createElementNS(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, org.xml.sax.Attributes attributes)HtmlElementDefaultElementFactory. createElementNS(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, org.xml.sax.Attributes attributes, boolean checkBrowserCompatibility)DomElementElementFactory. 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.DomElementElementFactory. 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.HtmlElementUnknownElementFactory. 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.HtmlElementUnknownElementFactory. 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.voidXmlSerializer. 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 voidXmlUtils. appendChild(SgmlPage page, DomNode parent, org.w3c.dom.Node child, boolean handleXHTMLAsHTML)Recursively appends aNodechild toDomNodeparent.static voidXmlUtils. 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 aNodechild toDomNodeparent. -
Uses of SgmlPage in org.htmlunit.xml
Subclasses of SgmlPage in org.htmlunit.xml Modifier and Type Class Description classXmlPageA page that will be returned for response with content type "text/xml".
-