elemental2.dom.Range Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elemental2-dom Show documentation
Show all versions of elemental2-dom Show documentation
Thin Java abstractions for the native Browser APIs.
package elemental2.dom;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class Range {
@JsOverlay public static final double END_TO_END = Range__Constants.END_TO_END;
@JsOverlay public static final double END_TO_START = Range__Constants.END_TO_START;
@JsOverlay public static final double START_TO_END = Range__Constants.START_TO_END;
@JsOverlay public static final double START_TO_START = Range__Constants.START_TO_START;
public boolean collapsed;
public Node commonAncestorContainer;
public Node endContainer;
public int endOffset;
public Node startContainer;
public int startOffset;
public native DocumentFragment cloneContents();
public native Range cloneRange();
public native void collapse(boolean toStart);
public native int compareBoundaryPoints(int how, Range sourceRange);
public native double deleteContents();
public native void detach();
public native DocumentFragment extractContents();
public native DOMRect getBoundingClientRect();
public native ClientRectList getClientRects();
public native DocumentFragment insertNode(Node newNode);
public native void selectNode(Node refNode);
public native void selectNodeContents(Node refNode);
public native void setEnd(Node refNode, int offset);
public native void setEndAfter(Node refNode);
public native void setEndBefore(Node refNode);
public native void setStart(Node refNode, int offset);
public native void setStartAfter(Node refNode);
public native void setStartBefore(Node refNode);
public native void surroundContents(Node newParent);
}