JAL-3454 tidy comments
[jalview.git] / src / com / stevesoft / pat / BackMatch.java
index 168faec..1d7499e 100755 (executable)
@@ -1,33 +1,57 @@
-//\r
-// This software is now distributed according to\r
-// the Lesser Gnu Public License.  Please see\r
-// http://www.gnu.org/copyleft/lesser.txt for\r
-// the details.\r
-//    -- Happy Computing!\r
-//\r
-package com.stevesoft.pat;\r
-import java.util.Hashtable;\r
-\r
-/** Provides the ability to match a backreference from within\r
-  * a Pattern.\r
-  */\r
-class BackMatch extends Pattern {\r
-    int id;\r
-    BackMatch(int id) { this.id = id; }\r
-    public String toString() { return "\\"+(id)+nextString(); }\r
-    public int matchInternal(int pos,Pthings p) {\r
-        int i1 = p.marks[id];\r
-        int i2 = p.marks[id+p.nMarks];\r
-        int imax = i2-i1;\r
-        if(i1<0||imax < 0||pos+imax>p.src.length()) return -1;\r
-        int ns = p.src.length()-pos;\r
-        if(imax < ns) ns = imax;\r
-        for(int i=0;i<ns;i++) {\r
-            if(p.src.charAt(i+i1) != p.src.charAt(pos+i))\r
-                return -1;\r
-        }\r
-        return nextMatch(pos+imax,p);\r
-    }\r
-    Pattern clone1(Hashtable h) { return new BackMatch(id); }\r
-}\r
-\r
+//
+// This software is now distributed according to
+// the Lesser Gnu Public License.  Please see
+// http://www.gnu.org/copyleft/lesser.txt for
+// the details.
+//    -- Happy Computing!
+//
+package com.stevesoft.pat;
+
+import java.util.Hashtable;
+
+/**
+ * Provides the ability to match a backreference from within a Pattern.
+ */
+class BackMatch extends Pattern
+{
+  int id;
+
+  BackMatch(int id)
+  {
+    this.id = id;
+  }
+
+  public String toString()
+  {
+    return "\\" + (id) + nextString();
+  }
+
+  public int matchInternal(int pos, Pthings p)
+  {
+    int i1 = p.marks[id];
+    int i2 = p.marks[id + p.nMarks];
+    int imax = i2 - i1;
+    if (i1 < 0 || imax < 0 || pos + imax > p.src.length())
+    {
+      return -1;
+    }
+    int ns = p.src.length() - pos;
+    if (imax < ns)
+    {
+      ns = imax;
+    }
+    for (int i = 0; i < ns; i++)
+    {
+      if (p.src.charAt(i + i1) != p.src.charAt(pos + i))
+      {
+        return -1;
+      }
+    }
+    return nextMatch(pos + imax, p);
+  }
+
+  Pattern clone1(Hashtable h)
+  {
+    return new BackMatch(id);
+  }
+}