update copyright
[fedora-idea.git] / xml / impl / src / com / intellij / lexer / XHtmlLexer.java
blob915535c70e559e6fb48d403a8621c30a8ce39545
1 package com.intellij.lexer;
3 /**
4 * Created by IntelliJ IDEA.
5 * User: Maxim.Mossienko
6 * Date: Oct 7, 2004
7 * Time: 5:17:07 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class XHtmlLexer extends HtmlLexer {
11 public XHtmlLexer(Lexer baseLexer) {
12 super(baseLexer,false);
15 public XHtmlLexer() {
16 this(new XmlLexer());
19 protected boolean isHtmlTagState(int state) {
20 return state == __XmlLexer.TAG;