Location of protein name specified
[jalview.git] / src / com / stevesoft / pat / NullRule.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 /** The apply(StringBufferLike sb,RegRes res) method of this derivation\r
11     of ReplaceRule appends nothing to the contents of the StringBuffer sb.\r
12     @see com.stevesoft.pat.ReplaceRule\r
13     */\r
14 public class NullRule extends ReplaceRule {\r
15     public NullRule() {}\r
16     public void apply(StringBufferLike sb,RegRes res) {\r
17     }\r
18     public String toString1() { return ""; }\r
19 }\r