|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jdesktop.swingx.JXEditorPane.DocumentSearchable
public class JXEditorPane.DocumentSearchable
A Searchable
implementation for Document
s.
Constructor Summary | |
---|---|
JXEditorPane.DocumentSearchable()
|
Method Summary | |
---|---|
protected boolean |
isEmpty(String searchString)
checks if the searchString should be interpreted as empty. |
int |
search(Pattern pattern)
Search for the pattern from the beginning of the document. |
int |
search(Pattern pattern,
int startIndex)
Search for the pattern from the start index. |
int |
search(Pattern pattern,
int startIndex,
boolean backwards)
Search for the pattern from the start index. |
int |
search(String searchString)
Search searchString from the beginning of a document. |
int |
search(String searchString,
int columnIndex)
Search searchString from the given position in a document. |
int |
search(String searchString,
int columnIndex,
boolean backward)
Search searchString in the given direction from the some position in a document. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public JXEditorPane.DocumentSearchable()
Method Detail |
---|
public int search(String searchString)
Searchable
searchString
from the beginning of a document.
search
in interface Searchable
searchString
- String
we should find in a document.
String
or -1 if a match cannot be found.public int search(String searchString, int columnIndex)
Searchable
searchString
from the given position in a document.
search
in interface Searchable
searchString
- String
we should find in a document.columnIndex
- Start position in a document or -1 if we want to search from the beginning.
String
or -1 if a match cannot be found.public int search(String searchString, int columnIndex, boolean backward)
Searchable
searchString
in the given direction from the some position in a document.
search
in interface Searchable
searchString
- String
we should find in a document.columnIndex
- Start position in a document or -1 if we want to search from the beginning.backward
- Indicates search direction, will search from the given position towards the
beginning of a document if this parameter is true
.
String
or -1 if a match cannot be found.protected boolean isEmpty(String searchString)
searchString
-
public int search(Pattern pattern)
Searchable
search
in interface Searchable
pattern
- Pattern for search
Pattern
or -1 if a match cannot be found.public int search(Pattern pattern, int startIndex)
Searchable
search
in interface Searchable
pattern
- Pattern for searchstartIndex
- starting index of search. If -1 then start from the beginning
public int search(Pattern pattern, int startIndex, boolean backwards)
Searchable
search
in interface Searchable
pattern
- Pattern for searchstartIndex
- starting index of search. If -1 then start from the beginningbackwards
- indicates the direction if true then search is backwards
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |