private String getCustomTokenizerClass() {
CodeFormat code = newCodeFormat();
code.tab().append("protected static class ").
append(TOKENIZER_CUSTOM).openBrace(2).endl();
code.tab(2).append("private final String str;").endl();
code.tab(2).append("private int last;").afterSection();
code.tab(2).append("public Tokenizer (String str)").
openBrace(3).endl();
code.tab(3).append("this.str = str;").endl();