X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fcom%2Fstevesoft%2Fpat%2FNullRule.java;h=7c780e18afdc423c29c25cd67b5d6dce6f1e34cd;hb=bfe07abf2c2716020ceeb37086c6d502121a2283;hp=454c81ee566f4563fc085a8962383517085aed28;hpb=c40cf903f740a72ab63dd1abc10fa33450ce660d;p=jalview.git diff --git a/src/com/stevesoft/pat/NullRule.java b/src/com/stevesoft/pat/NullRule.java index 454c81e..7c780e1 100755 --- a/src/com/stevesoft/pat/NullRule.java +++ b/src/com/stevesoft/pat/NullRule.java @@ -1,19 +1,30 @@ -// -// 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; - -/** The apply(StringBufferLike sb,RegRes res) method of this derivation - of ReplaceRule appends nothing to the contents of the StringBuffer sb. - @see com.stevesoft.pat.ReplaceRule - */ -public class NullRule extends ReplaceRule { - public NullRule() {} - public void apply(StringBufferLike sb,RegRes res) { - } - public String toString1() { return ""; } -} +// +// 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; + +/** + * The apply(StringBufferLike sb,RegRes res) method of this derivation of + * ReplaceRule appends nothing to the contents of the StringBuffer sb. + * + * @see com.stevesoft.pat.ReplaceRule + */ +public class NullRule extends ReplaceRule +{ + public NullRule() + { + } + + public void apply(StringBufferLike sb, RegRes res) + { + } + + public String toString1() + { + return ""; + } +}