JAL-1807 still testing
[jalviewjs.git] / unused / com / stevesoft / pat / wrap / WriterWrap.java
index 48db5e6..e5c6a84 100644 (file)
@@ -1,61 +1,61 @@
-//
-// 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.wrap;
-
-import java.io.*;
-
-import com.stevesoft.pat.*;
-
-/**
- * Allows the outcome of a replaceAll() or replaceFirst() to be directed to a
- * Writer rather than a String.
- * <p>
- * The method toStringLike() cannot work, however. This means that the return
- * value of replaceAll() will be null if this Object is used as the
- * StringBufferLike.
- */
-public class WriterWrap implements BasicStringBufferLike
-{
-  Writer w;
-
-  public WriterWrap(Writer w)
-  {
-    this.w = w;
-  }
-
-  public void appendChar(char c)
-  {
-    try
-    {
-      w.write((int) c);
-    } catch (IOException ioe)
-    {
-    }
-  }
-
-  public void appendStr(String s)
-  {
-    try
-    {
-      w.write(s);
-    } catch (IOException ioe)
-    {
-    }
-  }
-
-  /** This operation can't really be done. */
-  public StringLike toStringLike()
-  {
-    return null;
-  }
-
-  public Object unwrap()
-  {
-    return w;
-  }
-}
+//\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.wrap;\r
+\r
+import java.io.*;\r
+\r
+import com.stevesoft.pat.*;\r
+\r
+/**\r
+ * Allows the outcome of a replaceAll() or replaceFirst() to be directed to a\r
+ * Writer rather than a String.\r
+ * <p>\r
+ * The method toStringLike() cannot work, however. This means that the return\r
+ * value of replaceAll() will be null if this Object is used as the\r
+ * StringBufferLike.\r
+ */\r
+public class WriterWrap implements BasicStringBufferLike\r
+{\r
+  Writer w;\r
+\r
+  public WriterWrap(Writer w)\r
+  {\r
+    this.w = w;\r
+  }\r
+\r
+  public void appendChar(char c)\r
+  {\r
+    try\r
+    {\r
+      w.write((int) c);\r
+    } catch (IOException ioe)\r
+    {\r
+    }\r
+  }\r
+\r
+  public void appendStr(String s)\r
+  {\r
+    try\r
+    {\r
+      w.write(s);\r
+    } catch (IOException ioe)\r
+    {\r
+    }\r
+  }\r
+\r
+  /** This operation can't really be done. */\r
+  public StringLike toStringLike()\r
+  {\r
+    return null;\r
+  }\r
+\r
+  public Object unwrap()\r
+  {\r
+    return w;\r
+  }\r
+}\r