Files
openide/source/com/intellij/lexer/XHtmlLexer.java
Maxim Mossienko 2d6a270a84 EL added to JSPX
2005-01-29 22:42:41 +03:00

23 lines
460 B
Java

package com.intellij.lexer;
/**
* Created by IntelliJ IDEA.
* User: Maxim.Mossienko
* Date: Oct 7, 2004
* Time: 5:17:07 PM
* To change this template use File | Settings | File Templates.
*/
public class XHtmlLexer extends HtmlLexer {
protected XHtmlLexer(Lexer baseLexer) {
super(baseLexer,false);
}
public XHtmlLexer() {
this(new XmlLexer());
}
protected boolean isHtmlTagState(int state) {
return state == _XmlLexer.TAG;
}
}