| java.lang.Object org.netbeans.spi.jsp.lexer.JspParseData
JspParseData | final public class JspParseData (Code) | | Holds data relevant to the JSP coloring for one JSP page.
author: Marek Fukala |
Method Summary | |
public boolean | isELIgnored() Returns true if the EL is ignored in this page. | public boolean | isTagLibRegistered(CharSequence prefix) Returns true if the given tag library prefix is known in this page. | public boolean | isXMLSyntax() Returns true if the page is in xml syntax (JSP Documnet). | public void | updateParseData(Map<String, String> prefixMap, boolean isELIgnored, boolean isXMLSyntax) Updates coloring data. |
JspParseData | public JspParseData()(Code) | | |
isELIgnored | public boolean isELIgnored()(Code) | | Returns true if the EL is ignored in this page.
|
isTagLibRegistered | public boolean isTagLibRegistered(CharSequence prefix)(Code) | | Returns true if the given tag library prefix is known in this page.
|
isXMLSyntax | public boolean isXMLSyntax()(Code) | | Returns true if the page is in xml syntax (JSP Documnet).
If the page is in standard syntax, returns false.
|
updateParseData | public void updateParseData(Map<String, String> prefixMap, boolean isELIgnored, boolean isXMLSyntax)(Code) | | Updates coloring data. The update is initiated by parser successfuly finished parsing.
|
|
|