174175176177178179180181182183
this.comment = comment; this.html = html; if (html) { this.newLineHandler = new HTMLNewLineHandler(); } else { this.newLineHandler = new NeverNewLineHandler(); } stack = new Stack<Integer>(); state = html ? TEXT : UNKNOWN; }
175176177178179180181182183184