Formatting
[jalview.git] / src / com / stevesoft / pat / WantMoreTextReplaceRule.java
1 //\r
2 // This software is now distributed according to\r
3 // the Lesser Gnu Public License.  Please see\r
4 // http://www.gnu.org/copyleft/lesser.txt for\r
5 // the details.\r
6 //    -- Happy Computing!\r
7 //\r
8 package com.stevesoft.pat;\r
9 \r
10 /** Triggers the reading of another line of text, allowing a longer\r
11     pattern to match -- for details see\r
12     <a href="http://javaregex.com/code/WantMore.java.html">WantMore.java</a>.\r
13  */\r
14 public class WantMoreTextReplaceRule\r
15     extends SpecialRule\r
16 {\r
17   public WantMoreTextReplaceRule()\r
18   {}\r
19 \r
20   public void apply(StringBufferLike sb, RegRes res)\r
21   {\r
22   }\r
23 \r
24   public String toString1()\r
25   {\r
26     return "${WANT_MORE_TEXT}";\r
27   }\r
28 }\r