01: package vqwiki.lex; 02: 03: /** 04: * @author garethc 05: * Date: Jan 7, 2003 06: */ 07: public class EchoLex implements ExternalLex { 08: public String process(String text) { 09: return text; 10: } 11: }