Uses of Class
org.htmlunit.html.impl.SimpleRange
-
Packages that use SimpleRange Package Description org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPage
which represents an HTML document and provides access to its content.org.htmlunit.html.impl Contains some implementation classes that have to be public to be used internally in different packages but that shouldn't be used directly by HtmlUnit users.org.htmlunit.javascript.host.dom Implementations of the DOM JavaScript host objects - users of HtmlUnit shouldn't need anything in this package. -
-
Uses of SimpleRange in org.htmlunit.html
Fields in org.htmlunit.html with type parameters of type SimpleRange Modifier and Type Field Description private java.util.List<SimpleRange>
HtmlPage. selectionRanges_
Methods in org.htmlunit.html that return types with arguments of type SimpleRange Modifier and Type Method Description java.util.List<SimpleRange>
HtmlPage. getSelectionRanges()
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.Methods in org.htmlunit.html with parameters of type SimpleRange Modifier and Type Method Description void
HtmlPage. setSelectionRange(SimpleRange selectionRange)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK. -
Uses of SimpleRange in org.htmlunit.html.impl
Fields in org.htmlunit.html.impl declared as SimpleRange Modifier and Type Field Description private SimpleRange
SelectableTextSelectionDelegate. selection_
The field selection, which is independent of the browsing context's selection.Methods in org.htmlunit.html.impl that return SimpleRange Modifier and Type Method Description SimpleRange
SimpleRange. cloneRange()
Produces a new SimpleRange whose boundary-points are equal to the boundary-points of this. -
Uses of SimpleRange in org.htmlunit.javascript.host.dom
Methods in org.htmlunit.javascript.host.dom that return SimpleRange Modifier and Type Method Description private SimpleRange
Selection. getFirstRange()
Returns the first selection range in the current document, by document position.private SimpleRange
Selection. getLastRange()
Returns the last selection range in the current document, by document position.SimpleRange
AbstractRange. getSimpleRange()
Methods in org.htmlunit.javascript.host.dom that return types with arguments of type SimpleRange Modifier and Type Method Description private java.util.List<SimpleRange>
Selection. getRanges()
Returns the current HtmlUnit DOM selection ranges.Constructors in org.htmlunit.javascript.host.dom with parameters of type SimpleRange Constructor Description Range(SimpleRange simpleRange)
-