http://www.eclipse.org/legal/cpl-v10.html
**********************************************************************/
-import java.util.*;
+import java.util.Vector;
/**
- * Copied from org.eclipse.jdt.internal.ui.util.StringMatcher
+ * Copied from net.sourceforge.phpdt.internal.ui.util.StringMatcher
*
* A string pattern matcher, suppporting * and ? wildcards.
*/
}
/**
* StringMatcher constructor takes in a String object that is a simple
- * pattern which may contain * for 0 and many characters and
- * ? for exactly one character.
+ * pattern which may contain �*� for 0 and many characters and
+ * �?� for exactly one character.
*
* Literal '*' and '?' characters must be escaped in the pattern
* e.g., "\*" means literal "*", etc.
}
/**
* Parses the given pattern into segments seperated by wildcard '*' characters.
- * @param p, a String object that is a simple regular expression with * and/or ?
+ * @param p, a String object that is a simple regular expression with �*� and/or �?�
*/
private void parseWildCards() {
if(fPattern.startsWith("*"))//$NON-NLS-1$