merge from 2_4_Release branch
[jalview.git] / src / com / stevesoft / pat / RightRule.java
index c27d2e4..cddcb4a 100755 (executable)
@@ -1,29 +1,31 @@
-//\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
-\r
-/** The apply(StringBufferLike sb,RegRes res) method of this derivation\r
-    of ReplaceRule appends the contents of res.right() to the     StringBufferLike sb.\r
-    @see com.stevesoft.pat.ReplaceRule\r
- */\r
-public class RightRule\r
-    extends ReplaceRule\r
-{\r
-  public RightRule()\r
-  {}\r
-\r
-  public void apply(StringBufferLike sb, RegRes res)\r
-  {\r
-    sb.append(res.right());\r
-  }\r
-\r
-  public String toString1()\r
-  {\r
-    return "$'";\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;
+
+/**
+ * The apply(StringBufferLike sb,RegRes res) method of this derivation of
+ * ReplaceRule appends the contents of res.right() to the StringBufferLike sb.
+ * 
+ * @see com.stevesoft.pat.ReplaceRule
+ */
+public class RightRule extends ReplaceRule
+{
+  public RightRule()
+  {
+  }
+
+  public void apply(StringBufferLike sb, RegRes res)
+  {
+    sb.append(res.right());
+  }
+
+  public String toString1()
+  {
+    return "$'";
+  }
+}