Package de.mirkosertic.bytecoder.api.web
Class Window
- java.lang.Object
-
- de.mirkosertic.bytecoder.api.web.Window
-
- All Implemented Interfaces:
OpaqueReferenceType
,EventTarget
,WindowOrWorkerGlobalScope
public abstract class Window extends java.lang.Object implements EventTarget, WindowOrWorkerGlobalScope
-
-
Constructor Summary
Constructors Constructor Description Window()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract float
devicePixelRatio()
abstract HTMLDocument
document()
abstract float
innerHeight()
abstract float
innerWidth()
abstract void
requestAnimationFrame(AnimationFrameCallback aCallback)
static Window
window()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.mirkosertic.bytecoder.api.web.EventTarget
addEventListener, dispatchEvent
-
Methods inherited from interface de.mirkosertic.bytecoder.api.web.WindowOrWorkerGlobalScope
fetch
-
-
-
-
Method Detail
-
window
public static Window window()
-
document
public abstract HTMLDocument document()
-
requestAnimationFrame
public abstract void requestAnimationFrame(AnimationFrameCallback aCallback)
-
innerWidth
public abstract float innerWidth()
-
innerHeight
public abstract float innerHeight()
-
devicePixelRatio
public abstract float devicePixelRatio()
-
-