Class SearchParams
java.lang.Object
ro.sync.exml.workspace.api.standalone.project.SearchParams
Params for finding content in the project.
- Since:
- 28
*********************************
EXPERIMENTAL - Subject to change
********************************
Please note that this API is not marked as final and it can change in one of the next versions of the application. If you have suggestions, comments about it, please let us know.
-
Constructor Summary
ConstructorsConstructorDescriptionSearchParams(String fileNameWildcard, String searchString, String xpathExpression, boolean caseSensitive, boolean regexp, int maxMatches) Constructor. -
Method Summary
-
Constructor Details
-
SearchParams
public SearchParams(String fileNameWildcard, String searchString, String xpathExpression, boolean caseSensitive, boolean regexp, int maxMatches) Constructor.- Parameters:
fileNameWildcard- The file name wildcardsearchString- Search stringxpathExpression- Filter xpath expressioncaseSensitive- Case sensitiveregexp- Regexp enabledmaxMatches- Maximum matches.
-
-
Method Details
-
getSearchString
- Returns:
- Returns the searchString.
-
isRegexp
public boolean isRegexp()- Returns:
- Returns the regexp flag.
-
isCaseSensitive
public boolean isCaseSensitive()- Returns:
- Returns the caseSensitive flag.
-
getMaxMatches
public int getMaxMatches()- Returns:
- Returns the max matches size.
-
getFileNameWildcard
- Returns:
- Returns the file name wildcard.
-
getXpathExpression
- Returns:
- Returns the xpath expression used to filter matches.
-