public class Lexer { Lexer(String src_in) { System.out.println(src_in); } public void run() { System.out.println("Lexer runs."); } }