Package de.mirkosertic.bytecoder.api.web
Interface HTMLDocument
-
- All Superinterfaces:
Document
,EventTarget
,Node
,OpaqueReferenceType
,ParentNode
public interface HTMLDocument extends Document
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Element
activeElement()
Element
body()
java.lang.String
cookie()
Window
defaultView()
java.lang.String
dir()
java.lang.String
domain()
Element
head()
int
height()
java.lang.String
lastModified()
java.lang.String
location()
java.lang.String
referrer()
java.lang.String
title()
void
title(java.lang.String aNewTitle)
int
width()
-
Methods inherited from interface de.mirkosertic.bytecoder.api.web.Document
characterSet, createAttribute, createComment, createElement, createElementNS, createEvent, createTextNode, doctype, documentElement, documentURI, elementFromPoint, getElementsByClassName, getElementsByTagName, getElementsByTagNameNS, hidden, lastStyleSheetSet, normalizeDocument
-
Methods inherited from interface de.mirkosertic.bytecoder.api.web.EventTarget
addEventListener, dispatchEvent
-
Methods inherited from interface de.mirkosertic.bytecoder.api.web.Node
appendChild, baseURI, childNodes, cloneNode, compareDocumentPosition, contains, firstChild, getRootNode, hasChildNodes, insertBefore, lastChild, nextSibling, nodeName, nodeType, ownerDocument, parentElement, parentNode, previousSibling, removeAll, removeChild, replaceChild, textContent, textContent
-
Methods inherited from interface de.mirkosertic.bytecoder.api.web.ParentNode
append, appendString, childElementCount, children, firstElementChild, getElementById, lastElementChild, prepend, prependString, querySelector, querySelectorAll
-
-
-
-
Method Detail
-
activeElement
Element activeElement()
-
body
Element body()
-
cookie
java.lang.String cookie()
-
defaultView
Window defaultView()
-
dir
java.lang.String dir()
-
domain
java.lang.String domain()
-
head
Element head()
-
height
int height()
-
lastModified
java.lang.String lastModified()
-
location
java.lang.String location()
-
referrer
java.lang.String referrer()
-
width
int width()
-
title
java.lang.String title()
-
title
void title(java.lang.String aNewTitle)
-
-