%% %{ /* * ATF to normalized conversion for CDLI * v. 1.0, Malcolm D. Hyman, 2001-11-29 * [this is a jflex specification] */ %} %class CDLILex %public %implements LexS %type java.lang.String %unicode %% "c" { return "sz"; } "C" { return "SZ"; } "j" { return "g"; } "J" { return "G"; } .|\n { return yytext(); }