needed for applet search
[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 extends SpecialRule {\r
15     public WantMoreTextReplaceRule() {}\r
16     public void apply(StringBufferLike sb,RegRes res) {\r
17     }\r
18     public String toString1() { return "${WANT_MORE_TEXT}"; }\r
19 }\r