| Package | Description |
|---|---|
| com.teamdev.jxbrowser.search |
Provides the classes and interfaces for working with search functionality.
|
| Modifier and Type | Method and Description |
|---|---|
void |
TextFinder.find(java.lang.String text,
java.util.function.Consumer<FindResult> consumer)
Performs search of the given
text, highlights all matches and selects the first match
on the currently loaded web page. |
void |
TextFinder.find(java.lang.String text,
FindOptions options,
java.util.function.Consumer<FindResult> consumer)
Performs search of the given
text with the given options, highlights all
matches and selects the first or the last (depending on the given FindOptions.isSearchBackward() flag) match on the currently loaded web page. |