package java.util.regex; public final class Matcher implements java.util.regex.MatchResult { Matcher() { throw new RuntimeException("Stub!"); } public java.util.regex.Matcher appendReplacement(java.lang.StringBuffer buffer, java.lang.String replacement) { throw new RuntimeException("Stub!"); } public java.util.regex.Matcher reset() { throw new RuntimeException("Stub!"); } public java.util.regex.Matcher reset(java.lang.CharSequence input) { throw new RuntimeException("Stub!"); } public java.util.regex.Matcher usePattern(java.util.regex.Pattern pattern) { throw new RuntimeException("Stub!"); } public java.util.regex.Matcher region(int start, int end) { throw new RuntimeException("Stub!"); } public java.lang.StringBuffer appendTail(java.lang.StringBuffer buffer) { throw new RuntimeException("Stub!"); } public java.lang.String replaceFirst(java.lang.String replacement) { throw new RuntimeException("Stub!"); } public java.lang.String replaceAll(java.lang.String replacement) { throw new RuntimeException("Stub!"); } public java.util.regex.Pattern pattern() { throw new RuntimeException("Stub!"); } public boolean find(int start) { throw new RuntimeException("Stub!"); } public boolean find() { throw new RuntimeException("Stub!"); } public boolean lookingAt() { throw new RuntimeException("Stub!"); } public boolean matches() { throw new RuntimeException("Stub!"); } public static java.lang.String quoteReplacement(java.lang.String s) { throw new RuntimeException("Stub!"); } public java.util.regex.MatchResult toMatchResult() { throw new RuntimeException("Stub!"); } public java.util.regex.Matcher useAnchoringBounds(boolean value) { throw new RuntimeException("Stub!"); } public boolean hasAnchoringBounds() { throw new RuntimeException("Stub!"); } public java.util.regex.Matcher useTransparentBounds(boolean value) { throw new RuntimeException("Stub!"); } public boolean hasTransparentBounds() { throw new RuntimeException("Stub!"); } public int regionStart() { throw new RuntimeException("Stub!"); } public int regionEnd() { throw new RuntimeException("Stub!"); } public boolean requireEnd() { throw new RuntimeException("Stub!"); } public boolean hitEnd() { throw new RuntimeException("Stub!"); } protected void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public int end() { throw new RuntimeException("Stub!"); } public int end(int group) { throw new RuntimeException("Stub!"); } public java.lang.String group() { throw new RuntimeException("Stub!"); } public java.lang.String group(int group) { throw new RuntimeException("Stub!"); } public int groupCount() { throw new RuntimeException("Stub!"); } public int start() { throw new RuntimeException("Stub!"); } public int start(int group) throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); } }