* @return the starting index in the text of the pattern , or -1 if not
* found
*/
- protected int regExpPosIn(String text, int start, int end, String p) {
+ private int regExpPosIn(String text, int start, int end, String p) {
int plen = p.length();
int max = end - plen;
* @param <code>ignoreCase</code>, boolean indicating wether code>p</code>
* is case sensitive
*/
- protected boolean regExpRegionMatches(String text, int tStart, String p,
+ private boolean regExpRegionMatches(String text, int tStart, String p,
int pStart, int plen) {
while (plen-- > 0) {
char tchar = text.charAt(tStart++);
* @return the starting index in the text of the pattern , or -1 if not
* found
*/
- protected int textPosIn(String text, int start, int end, String p) {
+ private int textPosIn(String text, int start, int end, String p) {
int plen = p.length();
int max = end - plen;