2 // This software is now distributed according to
3 // the Lesser Gnu Public License. Please see
4 // http://www.gnu.org/copyleft/lesser.txt for
8 package com.stevesoft.pat;
11 * See the example file <a
12 * href="http://javaregex.com/code/trans3.java.html">trans3.java</a> for further
13 * examples of how this is used. You will probably not want to call it directly.
15 public class PushRule extends SpecialRule
19 public PushRule(PushRule p)
24 public PushRule(String nm, Regex rr)
30 public PushRule(String nm, Transformer tr)
36 public Object clone1()
38 return new PushRule(this);
41 public String String1()
43 return "${+" + name + "}";
46 public void apply(StringBufferLike sbl, RegRes rr)