// // 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; /** Implements substitution rule $POP. See the example * file trans3.html. */ public class PopRule extends SpecialRule { public PopRule() {} public String toString1() { return "${POP}"; } }