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
6 // -- Happy Computing!
\r
8 package com.stevesoft.pat;
\r
10 /** Implements the rules for \U, \L, \E, \Q in substitutions. */
\r
11 public final class CodeRule extends SpecialRule {
\r
13 public CodeRule() {}
\r
14 public CodeRule(char c) {
\r
17 public void apply(StringBufferLike sb,RegRes res) {
\r
20 public String toString1() { return "\\"+c; }
\r