JAL-1807
[jalview.git] / src / com / stevesoft / pat / BasicStringBufferLike.java
index 6e7b26c..89224e6 100755 (executable)
@@ -1,18 +1,23 @@
-package//\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
-com.stevesoft.pat;\r
-\r
-/** An abstraction of the StringBuffer which only\r
-    implements a subset of StringBuffer's methods.\r
-    */\r
-public interface BasicStringBufferLike {\r
-  public void append(char c);\r
-  public void append(String s);\r
-  public StringLike toStringLike();\r
-  public Object unwrap();\r
-}\r
+package //
+// 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!
+//
+com.stevesoft.pat;
+
+/**
+ * An abstraction of the StringBuffer which only implements a subset of
+ * StringBuffer's methods.
+ */
+public interface BasicStringBufferLike
+{
+  public void appendC(char c);
+
+  public void append(String s);
+
+  public StringLike toStringLike();
+
+  public Object unwrap();
+}