|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.mozilla.jrex.ui.JRexFindConfig
A Data class to hold all the find operation related data.
Constructor Summary | |
JRexFindConfig(String searchString)
Constructor to create config for search operation. |
|
JRexFindConfig(String searchString,
boolean findBackwards,
boolean wrapFind,
boolean entireWord,
boolean matchCase,
boolean searchFrames)
Constructor to create config for search operation. |
Method Summary | |
String |
getSearchString()
Returns Search String for the config. |
boolean |
isEntireWord()
Returns true if search try's to match only complete word. |
boolean |
isFindBackwards()
Returns true search direction will be backward. |
boolean |
isMatchCase()
Returns true if search is case sensitive. |
boolean |
isSearchFrames()
Returns true if frames are searched. |
boolean |
isWrapFind()
Returns true if continues after end/begin(in case of backward search) of page. |
String |
toString()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public JRexFindConfig(String searchString, boolean findBackwards, boolean wrapFind, boolean entireWord, boolean matchCase, boolean searchFrames)
searchString
- the string to search.findBackwards
- If true search direction will be backward.wrapFind
- If true search continues after end/begin(in case of backward search) of page.entireWord
- If true search try's to match only complete word.matchCase
- If true search is case sensitive.searchFrames
- If true frames are searched.public JRexFindConfig(String searchString)
searchString
- the string to search.
Note:- rest of the find parameteres are all set to false.JRexFindConfig(String,boolean,boolean,boolean,boolean,boolean)
Method Detail |
public String getSearchString()
public boolean isFindBackwards()
public boolean isWrapFind()
public boolean isEntireWord()
public boolean isMatchCase()
public boolean isSearchFrames()
public String toString()
toString
in class Object
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |