* @param tokenizer the tokenizer file generator
* @param analyzer the analyzer file generator
*/
private void initializeCode(CSharpTokenizerFile tokenizer,
CSharpAnalyzerFile analyzer) {
CSharpConstructor constr;
CSharpMethod method;
String str;
// Add using
file.addUsing(new CSharpUsing("System.IO"));
file.addUsing(new CSharpUsing("PerCederberg.Grammatica.Runtime"));
// Add namespace
if (gen.getNamespace() == null) {
file.addClass(cls);
} else {
CSharpNamespace n = new CSharpNamespace(gen.getNamespace());
n.addClass(cls);
file.addNamespace(n);
}
// Add file comment
str = file.toString() + "\n\n" + gen.getFileComment();
file.addComment(new CSharpComment(CSharpComment.BLOCK, str));
// Add type comment
cls.addComment(new CSharpComment(TYPE_COMMENT));
// Add enumeration
cls.addEnumeration(enm);
enm.addComment(new CSharpComment(ENUM_COMMENT));
// Add constructor
constr = new CSharpConstructor("TextReader input");
cls.addConstructor(constr);
constr.addComment(new CSharpComment(CONSTRUCTOR1_COMMENT));
constr.addInitializer("base(input)");
constr.addCode("CreatePatterns();");
// Add constructor
constr = new CSharpConstructor("TextReader input, " +
analyzer.getClassName() + " analyzer");
cls.addConstructor(constr);
constr.addComment(new CSharpComment(CONSTRUCTOR2_COMMENT));
constr.addInitializer("base(input, analyzer)");
constr.addCode("CreatePatterns();");
// Add tokenizer factory method
method = new CSharpMethod(CSharpMethod.PROTECTED + CSharpMethod.OVERRIDE,
"NewTokenizer",
"TextReader input",