jspparser

package
v0.0.0-...-9a26220 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 6, 2025 License: AGPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	JSPLexerJSP_COMMENT              = 1
	JSPLexerJSP_CONDITIONAL_COMMENT  = 2
	JSPLexerSCRIPT_OPEN              = 3
	JSPLexerSTYLE_OPEN               = 4
	JSPLexerDTD                      = 5
	JSPLexerCDATA                    = 6
	JSPLexerWHITESPACES              = 7
	JSPLexerXML_DECLARATION          = 8
	JSPLexerWHITESPACE_SKIP          = 9
	JSPLexerCLOSE_TAG_BEGIN          = 10
	JSPLexerTAG_BEGIN                = 11
	JSPLexerDIRECTIVE_BEGIN          = 12
	JSPLexerDECLARATION_BEGIN        = 13
	JSPLexerECHO_EXPRESSION_OPEN     = 14
	JSPLexerSCRIPTLET_OPEN           = 15
	JSPLexerQUOTE                    = 16
	JSPLexerTAG_END                  = 17
	JSPLexerEQUALS                   = 18
	JSPLexerEL_EXPR_START            = 19
	JSPLexerJSP_STATIC_CONTENT_CHARS = 20
	JSPLexerJSP_END                  = 21
	JSPLexerATTVAL_ATTRIBUTE         = 22
	JSPLexerATTVAL_VALUE             = 23
	JSPLexerEL_EXPR_END              = 24
	JSPLexerDTD_PUBLIC               = 25
	JSPLexerDTD_SYSTEM               = 26
	JSPLexerDTD_WHITESPACE_SKIP      = 27
	JSPLexerDTD_QUOTED               = 28
	JSPLexerDTD_IDENTIFIER           = 29
	JSPLexerBLOB_CLOSE               = 30
	JSPLexerBLOB_CONTENT             = 31
	JSPLexerJSP_JSTL_COLON           = 32
	JSPLexerTAG_SLASH_END            = 33
	JSPLexerTAG_CLOSE                = 34
	JSPLexerTAG_SLASH                = 35
	JSPLexerDIRECTIVE_END            = 36
	JSPLexerTAG_IDENTIFIER           = 37
	JSPLexerTAG_WHITESPACE           = 38
	JSPLexerSCRIPT_BODY              = 39
	JSPLexerSCRIPT_SHORT_BODY        = 40
	JSPLexerSTYLE_BODY               = 41
	JSPLexerSTYLE_SHORT_BODY         = 42
	JSPLexerATTVAL_EL_EXPR           = 43
	JSPLexerEL_EXPR_CONTENT          = 44
)

JSPLexer tokens.

View Source
const (
	JSPLexerIN_DTD = iota + 1
	JSPLexerJSP_BLOB
	JSPLexerTAG
	JSPLexerSCRIPT
	JSPLexerSTYLE
	JSPLexerATTVALUE
	JSPLexerATTVALUE_SINGLE_QUOTE
	JSPLexerATTVALUE_DOUBLE_QUOTE
	JSPLexerEL_EXPR_MODE
)

JSPLexer modes.

View Source
const (
	JSPParserEOF                      = antlr.TokenEOF
	JSPParserJSP_COMMENT              = 1
	JSPParserJSP_CONDITIONAL_COMMENT  = 2
	JSPParserSCRIPT_OPEN              = 3
	JSPParserSTYLE_OPEN               = 4
	JSPParserDTD                      = 5
	JSPParserCDATA                    = 6
	JSPParserWHITESPACES              = 7
	JSPParserXML_DECLARATION          = 8
	JSPParserWHITESPACE_SKIP          = 9
	JSPParserCLOSE_TAG_BEGIN          = 10
	JSPParserTAG_BEGIN                = 11
	JSPParserDIRECTIVE_BEGIN          = 12
	JSPParserDECLARATION_BEGIN        = 13
	JSPParserECHO_EXPRESSION_OPEN     = 14
	JSPParserSCRIPTLET_OPEN           = 15
	JSPParserQUOTE                    = 16
	JSPParserTAG_END                  = 17
	JSPParserEQUALS                   = 18
	JSPParserEL_EXPR_START            = 19
	JSPParserJSP_STATIC_CONTENT_CHARS = 20
	JSPParserJSP_END                  = 21
	JSPParserATTVAL_ATTRIBUTE         = 22
	JSPParserATTVAL_VALUE             = 23
	JSPParserEL_EXPR_END              = 24
	JSPParserDTD_PUBLIC               = 25
	JSPParserDTD_SYSTEM               = 26
	JSPParserDTD_WHITESPACE_SKIP      = 27
	JSPParserDTD_QUOTED               = 28
	JSPParserDTD_IDENTIFIER           = 29
	JSPParserBLOB_CLOSE               = 30
	JSPParserBLOB_CONTENT             = 31
	JSPParserJSP_JSTL_COLON           = 32
	JSPParserTAG_SLASH_END            = 33
	JSPParserTAG_CLOSE                = 34
	JSPParserTAG_SLASH                = 35
	JSPParserDIRECTIVE_END            = 36
	JSPParserTAG_IDENTIFIER           = 37
	JSPParserTAG_WHITESPACE           = 38
	JSPParserSCRIPT_BODY              = 39
	JSPParserSCRIPT_SHORT_BODY        = 40
	JSPParserSTYLE_BODY               = 41
	JSPParserSTYLE_SHORT_BODY         = 42
	JSPParserATTVAL_EL_EXPR           = 43
	JSPParserEL_EXPR_CONTENT          = 44
)

JSPParser tokens.

View Source
const (
	JSPParserRULE_jspDocuments              = 0
	JSPParserRULE_jspDocument               = 1
	JSPParserRULE_jspStart                  = 2
	JSPParserRULE_jspElements               = 3
	JSPParserRULE_htmlMiscs                 = 4
	JSPParserRULE_jspScript                 = 5
	JSPParserRULE_htmlElement               = 6
	JSPParserRULE_htmlBegin                 = 7
	JSPParserRULE_htmlTag                   = 8
	JSPParserRULE_jspDirective              = 9
	JSPParserRULE_htmlContents              = 10
	JSPParserRULE_htmlContent               = 11
	JSPParserRULE_elExpression              = 12
	JSPParserRULE_htmlAttribute             = 13
	JSPParserRULE_htmlAttributeName         = 14
	JSPParserRULE_htmlAttributeValue        = 15
	JSPParserRULE_htmlAttributeValueElement = 16
	JSPParserRULE_htmlTagName               = 17
	JSPParserRULE_htmlChardata              = 18
	JSPParserRULE_htmlMisc                  = 19
	JSPParserRULE_htmlComment               = 20
	JSPParserRULE_xhtmlCDATA                = 21
	JSPParserRULE_dtd                       = 22
	JSPParserRULE_dtdElementName            = 23
	JSPParserRULE_publicId                  = 24
	JSPParserRULE_systemId                  = 25
	JSPParserRULE_xml                       = 26
	JSPParserRULE_jspScriptlet              = 27
	JSPParserRULE_jspExpression             = 28
	JSPParserRULE_scriptletStart            = 29
	JSPParserRULE_scriptletContent          = 30
	JSPParserRULE_javaScript                = 31
	JSPParserRULE_style                     = 32
)

JSPParser rules.

Variables

This section is empty.

Functions

func JSPLexerInit

func JSPLexerInit()

JSPLexerInit initializes any static state used to implement JSPLexer. By default the static state used to implement the lexer is lazily initialized during the first call to NewJSPLexer(). You can call this function if you wish to initialize the static state ahead of time.

func JSPParserInit

func JSPParserInit()

JSPParserInit initializes any static state used to implement JSPParser. By default the static state used to implement the parser is lazily initialized during the first call to NewJSPParser(). You can call this function if you wish to initialize the static state ahead of time.

Types

type BaseJSPParserVisitor

type BaseJSPParserVisitor struct {
	*antlr.BaseParseTreeVisitor
}

func (*BaseJSPParserVisitor) VisitDtd

func (v *BaseJSPParserVisitor) VisitDtd(ctx *DtdContext) interface{}

func (*BaseJSPParserVisitor) VisitDtdElementName

func (v *BaseJSPParserVisitor) VisitDtdElementName(ctx *DtdElementNameContext) interface{}

func (*BaseJSPParserVisitor) VisitElExpression

func (v *BaseJSPParserVisitor) VisitElExpression(ctx *ElExpressionContext) interface{}

func (*BaseJSPParserVisitor) VisitEqualHTMLAttribute

func (v *BaseJSPParserVisitor) VisitEqualHTMLAttribute(ctx *EqualHTMLAttributeContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlAttributeName

func (v *BaseJSPParserVisitor) VisitHtmlAttributeName(ctx *HtmlAttributeNameContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlAttributeValue

func (v *BaseJSPParserVisitor) VisitHtmlAttributeValue(ctx *HtmlAttributeValueContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlAttributeValueElement

func (v *BaseJSPParserVisitor) VisitHtmlAttributeValueElement(ctx *HtmlAttributeValueElementContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlBegin

func (v *BaseJSPParserVisitor) VisitHtmlBegin(ctx *HtmlBeginContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlChardata

func (v *BaseJSPParserVisitor) VisitHtmlChardata(ctx *HtmlChardataContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlComment

func (v *BaseJSPParserVisitor) VisitHtmlComment(ctx *HtmlCommentContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlContent

func (v *BaseJSPParserVisitor) VisitHtmlContent(ctx *HtmlContentContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlContents

func (v *BaseJSPParserVisitor) VisitHtmlContents(ctx *HtmlContentsContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlElement

func (v *BaseJSPParserVisitor) VisitHtmlElement(ctx *HtmlElementContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlMisc

func (v *BaseJSPParserVisitor) VisitHtmlMisc(ctx *HtmlMiscContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlMiscs

func (v *BaseJSPParserVisitor) VisitHtmlMiscs(ctx *HtmlMiscsContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlTag

func (v *BaseJSPParserVisitor) VisitHtmlTag(ctx *HtmlTagContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlTagName

func (v *BaseJSPParserVisitor) VisitHtmlTagName(ctx *HtmlTagNameContext) interface{}

func (*BaseJSPParserVisitor) VisitJSPExpressionAttribute

func (v *BaseJSPParserVisitor) VisitJSPExpressionAttribute(ctx *JSPExpressionAttributeContext) interface{}

func (*BaseJSPParserVisitor) VisitJavaScript

func (v *BaseJSPParserVisitor) VisitJavaScript(ctx *JavaScriptContext) interface{}

func (*BaseJSPParserVisitor) VisitJspDirective

func (v *BaseJSPParserVisitor) VisitJspDirective(ctx *JspDirectiveContext) interface{}

func (*BaseJSPParserVisitor) VisitJspDocument

func (v *BaseJSPParserVisitor) VisitJspDocument(ctx *JspDocumentContext) interface{}

func (*BaseJSPParserVisitor) VisitJspDocuments

func (v *BaseJSPParserVisitor) VisitJspDocuments(ctx *JspDocumentsContext) interface{}

func (*BaseJSPParserVisitor) VisitJspElements

func (v *BaseJSPParserVisitor) VisitJspElements(ctx *JspElementsContext) interface{}

func (*BaseJSPParserVisitor) VisitJspExpression

func (v *BaseJSPParserVisitor) VisitJspExpression(ctx *JspExpressionContext) interface{}

func (*BaseJSPParserVisitor) VisitJspScript

func (v *BaseJSPParserVisitor) VisitJspScript(ctx *JspScriptContext) interface{}

func (*BaseJSPParserVisitor) VisitJspScriptlet

func (v *BaseJSPParserVisitor) VisitJspScriptlet(ctx *JspScriptletContext) interface{}

func (*BaseJSPParserVisitor) VisitJspStart

func (v *BaseJSPParserVisitor) VisitJspStart(ctx *JspStartContext) interface{}

func (*BaseJSPParserVisitor) VisitPublicId

func (v *BaseJSPParserVisitor) VisitPublicId(ctx *PublicIdContext) interface{}

func (*BaseJSPParserVisitor) VisitPureHTMLAttribute

func (v *BaseJSPParserVisitor) VisitPureHTMLAttribute(ctx *PureHTMLAttributeContext) interface{}

func (*BaseJSPParserVisitor) VisitScriptletContent

func (v *BaseJSPParserVisitor) VisitScriptletContent(ctx *ScriptletContentContext) interface{}

func (*BaseJSPParserVisitor) VisitScriptletStart

func (v *BaseJSPParserVisitor) VisitScriptletStart(ctx *ScriptletStartContext) interface{}

func (*BaseJSPParserVisitor) VisitStyle

func (v *BaseJSPParserVisitor) VisitStyle(ctx *StyleContext) interface{}

func (*BaseJSPParserVisitor) VisitSystemId

func (v *BaseJSPParserVisitor) VisitSystemId(ctx *SystemIdContext) interface{}

func (*BaseJSPParserVisitor) VisitXhtmlCDATA

func (v *BaseJSPParserVisitor) VisitXhtmlCDATA(ctx *XhtmlCDATAContext) interface{}

func (*BaseJSPParserVisitor) VisitXml

func (v *BaseJSPParserVisitor) VisitXml(ctx *XmlContext) interface{}

type DtdContext

type DtdContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewDtdContext

func NewDtdContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *DtdContext

func NewEmptyDtdContext

func NewEmptyDtdContext() *DtdContext

func (*DtdContext) Accept

func (s *DtdContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*DtdContext) AllPublicId

func (s *DtdContext) AllPublicId() []IPublicIdContext

func (*DtdContext) DTD

func (s *DtdContext) DTD() antlr.TerminalNode

func (*DtdContext) DTD_PUBLIC

func (s *DtdContext) DTD_PUBLIC() antlr.TerminalNode

func (*DtdContext) DTD_SYSTEM

func (s *DtdContext) DTD_SYSTEM() antlr.TerminalNode

func (*DtdContext) DtdElementName

func (s *DtdContext) DtdElementName() IDtdElementNameContext

func (*DtdContext) GetParser

func (s *DtdContext) GetParser() antlr.Parser

func (*DtdContext) GetRuleContext

func (s *DtdContext) GetRuleContext() antlr.RuleContext

func (*DtdContext) IsDtdContext

func (*DtdContext) IsDtdContext()

func (*DtdContext) PublicId

func (s *DtdContext) PublicId(i int) IPublicIdContext

func (*DtdContext) SystemId

func (s *DtdContext) SystemId() ISystemIdContext

func (*DtdContext) TAG_END

func (s *DtdContext) TAG_END() antlr.TerminalNode

func (*DtdContext) ToStringTree

func (s *DtdContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type DtdElementNameContext

type DtdElementNameContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewDtdElementNameContext

func NewDtdElementNameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *DtdElementNameContext

func NewEmptyDtdElementNameContext

func NewEmptyDtdElementNameContext() *DtdElementNameContext

func (*DtdElementNameContext) Accept

func (s *DtdElementNameContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*DtdElementNameContext) DTD_IDENTIFIER

func (s *DtdElementNameContext) DTD_IDENTIFIER() antlr.TerminalNode

func (*DtdElementNameContext) GetParser

func (s *DtdElementNameContext) GetParser() antlr.Parser

func (*DtdElementNameContext) GetRuleContext

func (s *DtdElementNameContext) GetRuleContext() antlr.RuleContext

func (*DtdElementNameContext) IsDtdElementNameContext

func (*DtdElementNameContext) IsDtdElementNameContext()

func (*DtdElementNameContext) ToStringTree

func (s *DtdElementNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ElExpressionContext

type ElExpressionContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewElExpressionContext

func NewElExpressionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ElExpressionContext

func NewEmptyElExpressionContext

func NewEmptyElExpressionContext() *ElExpressionContext

func (*ElExpressionContext) Accept

func (s *ElExpressionContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*ElExpressionContext) EL_EXPR_CONTENT

func (s *ElExpressionContext) EL_EXPR_CONTENT() antlr.TerminalNode

func (*ElExpressionContext) EL_EXPR_END

func (s *ElExpressionContext) EL_EXPR_END() antlr.TerminalNode

func (*ElExpressionContext) EL_EXPR_START

func (s *ElExpressionContext) EL_EXPR_START() antlr.TerminalNode

func (*ElExpressionContext) GetParser

func (s *ElExpressionContext) GetParser() antlr.Parser

func (*ElExpressionContext) GetRuleContext

func (s *ElExpressionContext) GetRuleContext() antlr.RuleContext

func (*ElExpressionContext) IsElExpressionContext

func (*ElExpressionContext) IsElExpressionContext()

func (*ElExpressionContext) ToStringTree

func (s *ElExpressionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type EqualHTMLAttributeContext

type EqualHTMLAttributeContext struct {
	*HtmlAttributeContext
}

func NewEqualHTMLAttributeContext

func NewEqualHTMLAttributeContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *EqualHTMLAttributeContext

func (*EqualHTMLAttributeContext) Accept

func (s *EqualHTMLAttributeContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*EqualHTMLAttributeContext) EQUALS

func (s *EqualHTMLAttributeContext) EQUALS() antlr.TerminalNode

func (*EqualHTMLAttributeContext) GetRuleContext

func (s *EqualHTMLAttributeContext) GetRuleContext() antlr.RuleContext

func (*EqualHTMLAttributeContext) HtmlAttributeName

func (*EqualHTMLAttributeContext) HtmlAttributeValue

func (s *EqualHTMLAttributeContext) HtmlAttributeValue() IHtmlAttributeValueContext

type HtmlAttributeContext

type HtmlAttributeContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlAttributeContext

func NewEmptyHtmlAttributeContext() *HtmlAttributeContext

func NewHtmlAttributeContext

func NewHtmlAttributeContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlAttributeContext

func (*HtmlAttributeContext) CopyFrom

func (s *HtmlAttributeContext) CopyFrom(ctx *HtmlAttributeContext)

func (*HtmlAttributeContext) GetParser

func (s *HtmlAttributeContext) GetParser() antlr.Parser

func (*HtmlAttributeContext) GetRuleContext

func (s *HtmlAttributeContext) GetRuleContext() antlr.RuleContext

func (*HtmlAttributeContext) IsHtmlAttributeContext

func (*HtmlAttributeContext) IsHtmlAttributeContext()

func (*HtmlAttributeContext) ToStringTree

func (s *HtmlAttributeContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type HtmlAttributeNameContext

type HtmlAttributeNameContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlAttributeNameContext

func NewEmptyHtmlAttributeNameContext() *HtmlAttributeNameContext

func NewHtmlAttributeNameContext

func NewHtmlAttributeNameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlAttributeNameContext

func (*HtmlAttributeNameContext) Accept

func (s *HtmlAttributeNameContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlAttributeNameContext) GetParser

func (s *HtmlAttributeNameContext) GetParser() antlr.Parser

func (*HtmlAttributeNameContext) GetRuleContext

func (s *HtmlAttributeNameContext) GetRuleContext() antlr.RuleContext

func (*HtmlAttributeNameContext) IsHtmlAttributeNameContext

func (*HtmlAttributeNameContext) IsHtmlAttributeNameContext()

func (*HtmlAttributeNameContext) TAG_IDENTIFIER

func (s *HtmlAttributeNameContext) TAG_IDENTIFIER() antlr.TerminalNode

func (*HtmlAttributeNameContext) ToStringTree

func (s *HtmlAttributeNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type HtmlAttributeValueContext

type HtmlAttributeValueContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlAttributeValueContext

func NewEmptyHtmlAttributeValueContext() *HtmlAttributeValueContext

func NewHtmlAttributeValueContext

func NewHtmlAttributeValueContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlAttributeValueContext

func (*HtmlAttributeValueContext) Accept

func (s *HtmlAttributeValueContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlAttributeValueContext) AllHtmlAttributeValueElement

func (s *HtmlAttributeValueContext) AllHtmlAttributeValueElement() []IHtmlAttributeValueElementContext

func (*HtmlAttributeValueContext) AllQUOTE

func (s *HtmlAttributeValueContext) AllQUOTE() []antlr.TerminalNode

func (*HtmlAttributeValueContext) GetParser

func (s *HtmlAttributeValueContext) GetParser() antlr.Parser

func (*HtmlAttributeValueContext) GetRuleContext

func (s *HtmlAttributeValueContext) GetRuleContext() antlr.RuleContext

func (*HtmlAttributeValueContext) HtmlAttributeValueElement

func (s *HtmlAttributeValueContext) HtmlAttributeValueElement(i int) IHtmlAttributeValueElementContext

func (*HtmlAttributeValueContext) IsHtmlAttributeValueContext

func (*HtmlAttributeValueContext) IsHtmlAttributeValueContext()

func (*HtmlAttributeValueContext) QUOTE

func (s *HtmlAttributeValueContext) QUOTE(i int) antlr.TerminalNode

func (*HtmlAttributeValueContext) ToStringTree

func (s *HtmlAttributeValueContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type HtmlAttributeValueElementContext

type HtmlAttributeValueElementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlAttributeValueElementContext

func NewEmptyHtmlAttributeValueElementContext() *HtmlAttributeValueElementContext

func NewHtmlAttributeValueElementContext

func NewHtmlAttributeValueElementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlAttributeValueElementContext

func (*HtmlAttributeValueElementContext) ATTVAL_ATTRIBUTE

func (s *HtmlAttributeValueElementContext) ATTVAL_ATTRIBUTE() antlr.TerminalNode

func (*HtmlAttributeValueElementContext) Accept

func (s *HtmlAttributeValueElementContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlAttributeValueElementContext) ElExpression

func (*HtmlAttributeValueElementContext) GetParser

func (s *HtmlAttributeValueElementContext) GetParser() antlr.Parser

func (*HtmlAttributeValueElementContext) GetRuleContext

func (s *HtmlAttributeValueElementContext) GetRuleContext() antlr.RuleContext

func (*HtmlAttributeValueElementContext) IsHtmlAttributeValueElementContext

func (*HtmlAttributeValueElementContext) IsHtmlAttributeValueElementContext()

func (*HtmlAttributeValueElementContext) JspExpression

func (*HtmlAttributeValueElementContext) ToStringTree

func (s *HtmlAttributeValueElementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type HtmlBeginContext

type HtmlBeginContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlBeginContext

func NewEmptyHtmlBeginContext() *HtmlBeginContext

func NewHtmlBeginContext

func NewHtmlBeginContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlBeginContext

func (*HtmlBeginContext) Accept

func (s *HtmlBeginContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlBeginContext) AllHtmlAttribute

func (s *HtmlBeginContext) AllHtmlAttribute() []IHtmlAttributeContext

func (*HtmlBeginContext) GetParser

func (s *HtmlBeginContext) GetParser() antlr.Parser

func (*HtmlBeginContext) GetRuleContext

func (s *HtmlBeginContext) GetRuleContext() antlr.RuleContext

func (*HtmlBeginContext) HtmlAttribute

func (s *HtmlBeginContext) HtmlAttribute(i int) IHtmlAttributeContext

func (*HtmlBeginContext) HtmlTag

func (s *HtmlBeginContext) HtmlTag() IHtmlTagContext

func (*HtmlBeginContext) IsHtmlBeginContext

func (*HtmlBeginContext) IsHtmlBeginContext()

func (*HtmlBeginContext) TAG_BEGIN

func (s *HtmlBeginContext) TAG_BEGIN() antlr.TerminalNode

func (*HtmlBeginContext) ToStringTree

func (s *HtmlBeginContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type HtmlChardataContext

type HtmlChardataContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlChardataContext

func NewEmptyHtmlChardataContext() *HtmlChardataContext

func NewHtmlChardataContext

func NewHtmlChardataContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlChardataContext

func (*HtmlChardataContext) Accept

func (s *HtmlChardataContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlChardataContext) GetParser

func (s *HtmlChardataContext) GetParser() antlr.Parser

func (*HtmlChardataContext) GetRuleContext

func (s *HtmlChardataContext) GetRuleContext() antlr.RuleContext

func (*HtmlChardataContext) IsHtmlChardataContext

func (*HtmlChardataContext) IsHtmlChardataContext()

func (*HtmlChardataContext) JSP_STATIC_CONTENT_CHARS

func (s *HtmlChardataContext) JSP_STATIC_CONTENT_CHARS() antlr.TerminalNode

func (*HtmlChardataContext) ToStringTree

func (s *HtmlChardataContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*HtmlChardataContext) WHITESPACES

func (s *HtmlChardataContext) WHITESPACES() antlr.TerminalNode

type HtmlCommentContext

type HtmlCommentContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlCommentContext

func NewEmptyHtmlCommentContext() *HtmlCommentContext

func NewHtmlCommentContext

func NewHtmlCommentContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlCommentContext

func (*HtmlCommentContext) Accept

func (s *HtmlCommentContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlCommentContext) GetParser

func (s *HtmlCommentContext) GetParser() antlr.Parser

func (*HtmlCommentContext) GetRuleContext

func (s *HtmlCommentContext) GetRuleContext() antlr.RuleContext

func (*HtmlCommentContext) IsHtmlCommentContext

func (*HtmlCommentContext) IsHtmlCommentContext()

func (*HtmlCommentContext) JSP_COMMENT

func (s *HtmlCommentContext) JSP_COMMENT() antlr.TerminalNode

func (*HtmlCommentContext) JSP_CONDITIONAL_COMMENT

func (s *HtmlCommentContext) JSP_CONDITIONAL_COMMENT() antlr.TerminalNode

func (*HtmlCommentContext) ToStringTree

func (s *HtmlCommentContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type HtmlContentContext

type HtmlContentContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlContentContext

func NewEmptyHtmlContentContext() *HtmlContentContext

func NewHtmlContentContext

func NewHtmlContentContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlContentContext

func (*HtmlContentContext) Accept

func (s *HtmlContentContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlContentContext) ElExpression

func (s *HtmlContentContext) ElExpression() IElExpressionContext

func (*HtmlContentContext) GetParser

func (s *HtmlContentContext) GetParser() antlr.Parser

func (*HtmlContentContext) GetRuleContext

func (s *HtmlContentContext) GetRuleContext() antlr.RuleContext

func (*HtmlContentContext) HtmlComment

func (s *HtmlContentContext) HtmlComment() IHtmlCommentContext

func (*HtmlContentContext) IsHtmlContentContext

func (*HtmlContentContext) IsHtmlContentContext()

func (*HtmlContentContext) JspElements

func (s *HtmlContentContext) JspElements() IJspElementsContext

func (*HtmlContentContext) ToStringTree

func (s *HtmlContentContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*HtmlContentContext) XhtmlCDATA

func (s *HtmlContentContext) XhtmlCDATA() IXhtmlCDATAContext

type HtmlContentsContext

type HtmlContentsContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlContentsContext

func NewEmptyHtmlContentsContext() *HtmlContentsContext

func NewHtmlContentsContext

func NewHtmlContentsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlContentsContext

func (*HtmlContentsContext) Accept

func (s *HtmlContentsContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlContentsContext) AllHtmlChardata

func (s *HtmlContentsContext) AllHtmlChardata() []IHtmlChardataContext

func (*HtmlContentsContext) AllHtmlContent

func (s *HtmlContentsContext) AllHtmlContent() []IHtmlContentContext

func (*HtmlContentsContext) GetParser

func (s *HtmlContentsContext) GetParser() antlr.Parser

func (*HtmlContentsContext) GetRuleContext

func (s *HtmlContentsContext) GetRuleContext() antlr.RuleContext

func (*HtmlContentsContext) HtmlChardata

func (s *HtmlContentsContext) HtmlChardata(i int) IHtmlChardataContext

func (*HtmlContentsContext) HtmlContent

func (s *HtmlContentsContext) HtmlContent(i int) IHtmlContentContext

func (*HtmlContentsContext) IsHtmlContentsContext

func (*HtmlContentsContext) IsHtmlContentsContext()

func (*HtmlContentsContext) ToStringTree

func (s *HtmlContentsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type HtmlElementContext

type HtmlElementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlElementContext

func NewEmptyHtmlElementContext() *HtmlElementContext

func NewHtmlElementContext

func NewHtmlElementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlElementContext

func (*HtmlElementContext) Accept

func (s *HtmlElementContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlElementContext) AllTAG_CLOSE

func (s *HtmlElementContext) AllTAG_CLOSE() []antlr.TerminalNode

func (*HtmlElementContext) CLOSE_TAG_BEGIN

func (s *HtmlElementContext) CLOSE_TAG_BEGIN() antlr.TerminalNode

func (*HtmlElementContext) GetParser

func (s *HtmlElementContext) GetParser() antlr.Parser

func (*HtmlElementContext) GetRuleContext

func (s *HtmlElementContext) GetRuleContext() antlr.RuleContext

func (*HtmlElementContext) HtmlBegin

func (s *HtmlElementContext) HtmlBegin() IHtmlBeginContext

func (*HtmlElementContext) HtmlContents

func (s *HtmlElementContext) HtmlContents() IHtmlContentsContext

func (*HtmlElementContext) HtmlTag

func (s *HtmlElementContext) HtmlTag() IHtmlTagContext

func (*HtmlElementContext) IsHtmlElementContext

func (*HtmlElementContext) IsHtmlElementContext()

func (*HtmlElementContext) TAG_CLOSE

func (s *HtmlElementContext) TAG_CLOSE(i int) antlr.TerminalNode

func (*HtmlElementContext) TAG_SLASH_END

func (s *HtmlElementContext) TAG_SLASH_END() antlr.TerminalNode

func (*HtmlElementContext) ToStringTree

func (s *HtmlElementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type HtmlMiscContext

type HtmlMiscContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlMiscContext

func NewEmptyHtmlMiscContext() *HtmlMiscContext

func NewHtmlMiscContext

func NewHtmlMiscContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlMiscContext

func (*HtmlMiscContext) Accept

func (s *HtmlMiscContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlMiscContext) ElExpression

func (s *HtmlMiscContext) ElExpression() IElExpressionContext

func (*HtmlMiscContext) GetParser

func (s *HtmlMiscContext) GetParser() antlr.Parser

func (*HtmlMiscContext) GetRuleContext

func (s *HtmlMiscContext) GetRuleContext() antlr.RuleContext

func (*HtmlMiscContext) HtmlComment

func (s *HtmlMiscContext) HtmlComment() IHtmlCommentContext

func (*HtmlMiscContext) IsHtmlMiscContext

func (*HtmlMiscContext) IsHtmlMiscContext()

func (*HtmlMiscContext) JspScriptlet

func (s *HtmlMiscContext) JspScriptlet() IJspScriptletContext

func (*HtmlMiscContext) ToStringTree

func (s *HtmlMiscContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*HtmlMiscContext) WHITESPACES

func (s *HtmlMiscContext) WHITESPACES() antlr.TerminalNode

type HtmlMiscsContext

type HtmlMiscsContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlMiscsContext

func NewEmptyHtmlMiscsContext() *HtmlMiscsContext

func NewHtmlMiscsContext

func NewHtmlMiscsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlMiscsContext

func (*HtmlMiscsContext) Accept

func (s *HtmlMiscsContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlMiscsContext) AllHtmlMisc

func (s *HtmlMiscsContext) AllHtmlMisc() []IHtmlMiscContext

func (*HtmlMiscsContext) GetParser

func (s *HtmlMiscsContext) GetParser() antlr.Parser

func (*HtmlMiscsContext) GetRuleContext

func (s *HtmlMiscsContext) GetRuleContext() antlr.RuleContext

func (*HtmlMiscsContext) HtmlMisc

func (s *HtmlMiscsContext) HtmlMisc(i int) IHtmlMiscContext

func (*HtmlMiscsContext) IsHtmlMiscsContext

func (*HtmlMiscsContext) IsHtmlMiscsContext()

func (*HtmlMiscsContext) ToStringTree

func (s *HtmlMiscsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type HtmlTagContext

type HtmlTagContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlTagContext

func NewEmptyHtmlTagContext() *HtmlTagContext

func NewHtmlTagContext

func NewHtmlTagContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlTagContext

func (*HtmlTagContext) Accept

func (s *HtmlTagContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlTagContext) AllHtmlTagName

func (s *HtmlTagContext) AllHtmlTagName() []IHtmlTagNameContext

func (*HtmlTagContext) GetParser

func (s *HtmlTagContext) GetParser() antlr.Parser

func (*HtmlTagContext) GetRuleContext

func (s *HtmlTagContext) GetRuleContext() antlr.RuleContext

func (*HtmlTagContext) HtmlTagName

func (s *HtmlTagContext) HtmlTagName(i int) IHtmlTagNameContext

func (*HtmlTagContext) IsHtmlTagContext

func (*HtmlTagContext) IsHtmlTagContext()

func (*HtmlTagContext) JSP_JSTL_COLON

func (s *HtmlTagContext) JSP_JSTL_COLON() antlr.TerminalNode

func (*HtmlTagContext) ToStringTree

func (s *HtmlTagContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type HtmlTagNameContext

type HtmlTagNameContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyHtmlTagNameContext

func NewEmptyHtmlTagNameContext() *HtmlTagNameContext

func NewHtmlTagNameContext

func NewHtmlTagNameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlTagNameContext

func (*HtmlTagNameContext) Accept

func (s *HtmlTagNameContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlTagNameContext) GetParser

func (s *HtmlTagNameContext) GetParser() antlr.Parser

func (*HtmlTagNameContext) GetRuleContext

func (s *HtmlTagNameContext) GetRuleContext() antlr.RuleContext

func (*HtmlTagNameContext) IsHtmlTagNameContext

func (*HtmlTagNameContext) IsHtmlTagNameContext()

func (*HtmlTagNameContext) TAG_IDENTIFIER

func (s *HtmlTagNameContext) TAG_IDENTIFIER() antlr.TerminalNode

func (*HtmlTagNameContext) ToStringTree

func (s *HtmlTagNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type IDtdContext

type IDtdContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsDtdContext differentiates from other interfaces.
	IsDtdContext()
}

IDtdContext is an interface to support dynamic dispatch.

type IDtdElementNameContext

type IDtdElementNameContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsDtdElementNameContext differentiates from other interfaces.
	IsDtdElementNameContext()
}

IDtdElementNameContext is an interface to support dynamic dispatch.

type IElExpressionContext

type IElExpressionContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsElExpressionContext differentiates from other interfaces.
	IsElExpressionContext()
}

IElExpressionContext is an interface to support dynamic dispatch.

type IHtmlAttributeContext

type IHtmlAttributeContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlAttributeContext differentiates from other interfaces.
	IsHtmlAttributeContext()
}

IHtmlAttributeContext is an interface to support dynamic dispatch.

type IHtmlAttributeNameContext

type IHtmlAttributeNameContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlAttributeNameContext differentiates from other interfaces.
	IsHtmlAttributeNameContext()
}

IHtmlAttributeNameContext is an interface to support dynamic dispatch.

type IHtmlAttributeValueContext

type IHtmlAttributeValueContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlAttributeValueContext differentiates from other interfaces.
	IsHtmlAttributeValueContext()
}

IHtmlAttributeValueContext is an interface to support dynamic dispatch.

type IHtmlAttributeValueElementContext

type IHtmlAttributeValueElementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlAttributeValueElementContext differentiates from other interfaces.
	IsHtmlAttributeValueElementContext()
}

IHtmlAttributeValueElementContext is an interface to support dynamic dispatch.

type IHtmlBeginContext

type IHtmlBeginContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlBeginContext differentiates from other interfaces.
	IsHtmlBeginContext()
}

IHtmlBeginContext is an interface to support dynamic dispatch.

type IHtmlChardataContext

type IHtmlChardataContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlChardataContext differentiates from other interfaces.
	IsHtmlChardataContext()
}

IHtmlChardataContext is an interface to support dynamic dispatch.

type IHtmlCommentContext

type IHtmlCommentContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlCommentContext differentiates from other interfaces.
	IsHtmlCommentContext()
}

IHtmlCommentContext is an interface to support dynamic dispatch.

type IHtmlContentContext

type IHtmlContentContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlContentContext differentiates from other interfaces.
	IsHtmlContentContext()
}

IHtmlContentContext is an interface to support dynamic dispatch.

type IHtmlContentsContext

type IHtmlContentsContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlContentsContext differentiates from other interfaces.
	IsHtmlContentsContext()
}

IHtmlContentsContext is an interface to support dynamic dispatch.

type IHtmlElementContext

type IHtmlElementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlElementContext differentiates from other interfaces.
	IsHtmlElementContext()
}

IHtmlElementContext is an interface to support dynamic dispatch.

type IHtmlMiscContext

type IHtmlMiscContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlMiscContext differentiates from other interfaces.
	IsHtmlMiscContext()
}

IHtmlMiscContext is an interface to support dynamic dispatch.

type IHtmlMiscsContext

type IHtmlMiscsContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlMiscsContext differentiates from other interfaces.
	IsHtmlMiscsContext()
}

IHtmlMiscsContext is an interface to support dynamic dispatch.

type IHtmlTagContext

type IHtmlTagContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlTagContext differentiates from other interfaces.
	IsHtmlTagContext()
}

IHtmlTagContext is an interface to support dynamic dispatch.

type IHtmlTagNameContext

type IHtmlTagNameContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsHtmlTagNameContext differentiates from other interfaces.
	IsHtmlTagNameContext()
}

IHtmlTagNameContext is an interface to support dynamic dispatch.

type IJavaScriptContext

type IJavaScriptContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsJavaScriptContext differentiates from other interfaces.
	IsJavaScriptContext()
}

IJavaScriptContext is an interface to support dynamic dispatch.

type IJspDirectiveContext

type IJspDirectiveContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsJspDirectiveContext differentiates from other interfaces.
	IsJspDirectiveContext()
}

IJspDirectiveContext is an interface to support dynamic dispatch.

type IJspDocumentContext

type IJspDocumentContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsJspDocumentContext differentiates from other interfaces.
	IsJspDocumentContext()
}

IJspDocumentContext is an interface to support dynamic dispatch.

type IJspDocumentsContext

type IJspDocumentsContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsJspDocumentsContext differentiates from other interfaces.
	IsJspDocumentsContext()
}

IJspDocumentsContext is an interface to support dynamic dispatch.

type IJspElementsContext

type IJspElementsContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// GetBeforeContent returns the beforeContent rule contexts.
	GetBeforeContent() IHtmlMiscsContext

	// GetAfterContent returns the afterContent rule contexts.
	GetAfterContent() IHtmlMiscsContext

	// SetBeforeContent sets the beforeContent rule contexts.
	SetBeforeContent(IHtmlMiscsContext)

	// SetAfterContent sets the afterContent rule contexts.
	SetAfterContent(IHtmlMiscsContext)

	// IsJspElementsContext differentiates from other interfaces.
	IsJspElementsContext()
}

IJspElementsContext is an interface to support dynamic dispatch.

type IJspExpressionContext

type IJspExpressionContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsJspExpressionContext differentiates from other interfaces.
	IsJspExpressionContext()
}

IJspExpressionContext is an interface to support dynamic dispatch.

type IJspScriptContext

type IJspScriptContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsJspScriptContext differentiates from other interfaces.
	IsJspScriptContext()
}

IJspScriptContext is an interface to support dynamic dispatch.

type IJspScriptletContext

type IJspScriptletContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsJspScriptletContext differentiates from other interfaces.
	IsJspScriptletContext()
}

IJspScriptletContext is an interface to support dynamic dispatch.

type IJspStartContext

type IJspStartContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsJspStartContext differentiates from other interfaces.
	IsJspStartContext()
}

IJspStartContext is an interface to support dynamic dispatch.

type IPublicIdContext

type IPublicIdContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsPublicIdContext differentiates from other interfaces.
	IsPublicIdContext()
}

IPublicIdContext is an interface to support dynamic dispatch.

type IScriptletContentContext

type IScriptletContentContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsScriptletContentContext differentiates from other interfaces.
	IsScriptletContentContext()
}

IScriptletContentContext is an interface to support dynamic dispatch.

type IScriptletStartContext

type IScriptletStartContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsScriptletStartContext differentiates from other interfaces.
	IsScriptletStartContext()
}

IScriptletStartContext is an interface to support dynamic dispatch.

type IStyleContext

type IStyleContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsStyleContext differentiates from other interfaces.
	IsStyleContext()
}

IStyleContext is an interface to support dynamic dispatch.

type ISystemIdContext

type ISystemIdContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsSystemIdContext differentiates from other interfaces.
	IsSystemIdContext()
}

ISystemIdContext is an interface to support dynamic dispatch.

type IXhtmlCDATAContext

type IXhtmlCDATAContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsXhtmlCDATAContext differentiates from other interfaces.
	IsXhtmlCDATAContext()
}

IXhtmlCDATAContext is an interface to support dynamic dispatch.

type IXmlContext

type IXmlContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// GetName returns the name rule contexts.
	GetName() IHtmlTagNameContext

	// Get_htmlAttribute returns the _htmlAttribute rule contexts.
	Get_htmlAttribute() IHtmlAttributeContext

	// SetName sets the name rule contexts.
	SetName(IHtmlTagNameContext)

	// Set_htmlAttribute sets the _htmlAttribute rule contexts.
	Set_htmlAttribute(IHtmlAttributeContext)

	// GetAtts returns the atts rule context list.
	GetAtts() []IHtmlAttributeContext

	// SetAtts sets the atts rule context list.
	SetAtts([]IHtmlAttributeContext)

	// IsXmlContext differentiates from other interfaces.
	IsXmlContext()
}

IXmlContext is an interface to support dynamic dispatch.

type JSPExpressionAttributeContext

type JSPExpressionAttributeContext struct {
	*HtmlAttributeContext
}

func NewJSPExpressionAttributeContext

func NewJSPExpressionAttributeContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *JSPExpressionAttributeContext

func (*JSPExpressionAttributeContext) Accept

func (s *JSPExpressionAttributeContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JSPExpressionAttributeContext) GetRuleContext

func (s *JSPExpressionAttributeContext) GetRuleContext() antlr.RuleContext

func (*JSPExpressionAttributeContext) JspExpression

type JSPLexer

type JSPLexer struct {
	*antlr.BaseLexer
	// contains filtered or unexported fields
}

func NewJSPLexer

func NewJSPLexer(input antlr.CharStream) *JSPLexer

NewJSPLexer produces a new lexer instance for the optional input antlr.CharStream.

func (*JSPLexer) LA

func (p *JSPLexer) LA(idx int) int

type JSPParser

type JSPParser struct {
	*antlr.BaseParser
}

func NewJSPParser

func NewJSPParser(input antlr.TokenStream) *JSPParser

NewJSPParser produces a new parser instance for the optional input antlr.TokenStream.

func (*JSPParser) Dtd

func (p *JSPParser) Dtd() (localctx IDtdContext)

func (*JSPParser) DtdElementName

func (p *JSPParser) DtdElementName() (localctx IDtdElementNameContext)

func (*JSPParser) ElExpression

func (p *JSPParser) ElExpression() (localctx IElExpressionContext)

func (*JSPParser) HtmlAttribute

func (p *JSPParser) HtmlAttribute() (localctx IHtmlAttributeContext)

func (*JSPParser) HtmlAttributeName

func (p *JSPParser) HtmlAttributeName() (localctx IHtmlAttributeNameContext)

func (*JSPParser) HtmlAttributeValue

func (p *JSPParser) HtmlAttributeValue() (localctx IHtmlAttributeValueContext)

func (*JSPParser) HtmlAttributeValueElement

func (p *JSPParser) HtmlAttributeValueElement() (localctx IHtmlAttributeValueElementContext)

func (*JSPParser) HtmlBegin

func (p *JSPParser) HtmlBegin() (localctx IHtmlBeginContext)

func (*JSPParser) HtmlChardata

func (p *JSPParser) HtmlChardata() (localctx IHtmlChardataContext)

func (*JSPParser) HtmlComment

func (p *JSPParser) HtmlComment() (localctx IHtmlCommentContext)

func (*JSPParser) HtmlContent

func (p *JSPParser) HtmlContent() (localctx IHtmlContentContext)

func (*JSPParser) HtmlContents

func (p *JSPParser) HtmlContents() (localctx IHtmlContentsContext)

func (*JSPParser) HtmlElement

func (p *JSPParser) HtmlElement() (localctx IHtmlElementContext)

func (*JSPParser) HtmlMisc

func (p *JSPParser) HtmlMisc() (localctx IHtmlMiscContext)

func (*JSPParser) HtmlMiscs

func (p *JSPParser) HtmlMiscs() (localctx IHtmlMiscsContext)

func (*JSPParser) HtmlTag

func (p *JSPParser) HtmlTag() (localctx IHtmlTagContext)

func (*JSPParser) HtmlTagName

func (p *JSPParser) HtmlTagName() (localctx IHtmlTagNameContext)

func (*JSPParser) JavaScript

func (p *JSPParser) JavaScript() (localctx IJavaScriptContext)

func (*JSPParser) JspDirective

func (p *JSPParser) JspDirective() (localctx IJspDirectiveContext)

func (*JSPParser) JspDocument

func (p *JSPParser) JspDocument() (localctx IJspDocumentContext)

func (*JSPParser) JspDocuments

func (p *JSPParser) JspDocuments() (localctx IJspDocumentsContext)

func (*JSPParser) JspElements

func (p *JSPParser) JspElements() (localctx IJspElementsContext)

func (*JSPParser) JspExpression

func (p *JSPParser) JspExpression() (localctx IJspExpressionContext)

func (*JSPParser) JspScript

func (p *JSPParser) JspScript() (localctx IJspScriptContext)

func (*JSPParser) JspScriptlet

func (p *JSPParser) JspScriptlet() (localctx IJspScriptletContext)

func (*JSPParser) JspStart

func (p *JSPParser) JspStart() (localctx IJspStartContext)

func (*JSPParser) PublicId

func (p *JSPParser) PublicId() (localctx IPublicIdContext)

func (*JSPParser) ScriptletContent

func (p *JSPParser) ScriptletContent() (localctx IScriptletContentContext)

func (*JSPParser) ScriptletStart

func (p *JSPParser) ScriptletStart() (localctx IScriptletStartContext)

func (*JSPParser) Style

func (p *JSPParser) Style() (localctx IStyleContext)

func (*JSPParser) SystemId

func (p *JSPParser) SystemId() (localctx ISystemIdContext)

func (*JSPParser) XhtmlCDATA

func (p *JSPParser) XhtmlCDATA() (localctx IXhtmlCDATAContext)

func (*JSPParser) Xml

func (p *JSPParser) Xml() (localctx IXmlContext)

type JSPParserVisitor

type JSPParserVisitor interface {
	antlr.ParseTreeVisitor

	// Visit a parse tree produced by JSPParser#jspDocuments.
	VisitJspDocuments(ctx *JspDocumentsContext) interface{}

	// Visit a parse tree produced by JSPParser#jspDocument.
	VisitJspDocument(ctx *JspDocumentContext) interface{}

	// Visit a parse tree produced by JSPParser#jspStart.
	VisitJspStart(ctx *JspStartContext) interface{}

	// Visit a parse tree produced by JSPParser#jspElements.
	VisitJspElements(ctx *JspElementsContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlMiscs.
	VisitHtmlMiscs(ctx *HtmlMiscsContext) interface{}

	// Visit a parse tree produced by JSPParser#jspScript.
	VisitJspScript(ctx *JspScriptContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlElement.
	VisitHtmlElement(ctx *HtmlElementContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlBegin.
	VisitHtmlBegin(ctx *HtmlBeginContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlTag.
	VisitHtmlTag(ctx *HtmlTagContext) interface{}

	// Visit a parse tree produced by JSPParser#jspDirective.
	VisitJspDirective(ctx *JspDirectiveContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlContents.
	VisitHtmlContents(ctx *HtmlContentsContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlContent.
	VisitHtmlContent(ctx *HtmlContentContext) interface{}

	// Visit a parse tree produced by JSPParser#elExpression.
	VisitElExpression(ctx *ElExpressionContext) interface{}

	// Visit a parse tree produced by JSPParser#EqualHTMLAttribute.
	VisitEqualHTMLAttribute(ctx *EqualHTMLAttributeContext) interface{}

	// Visit a parse tree produced by JSPParser#PureHTMLAttribute.
	VisitPureHTMLAttribute(ctx *PureHTMLAttributeContext) interface{}

	// Visit a parse tree produced by JSPParser#JSPExpressionAttribute.
	VisitJSPExpressionAttribute(ctx *JSPExpressionAttributeContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlAttributeName.
	VisitHtmlAttributeName(ctx *HtmlAttributeNameContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlAttributeValue.
	VisitHtmlAttributeValue(ctx *HtmlAttributeValueContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlAttributeValueElement.
	VisitHtmlAttributeValueElement(ctx *HtmlAttributeValueElementContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlTagName.
	VisitHtmlTagName(ctx *HtmlTagNameContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlChardata.
	VisitHtmlChardata(ctx *HtmlChardataContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlMisc.
	VisitHtmlMisc(ctx *HtmlMiscContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlComment.
	VisitHtmlComment(ctx *HtmlCommentContext) interface{}

	// Visit a parse tree produced by JSPParser#xhtmlCDATA.
	VisitXhtmlCDATA(ctx *XhtmlCDATAContext) interface{}

	// Visit a parse tree produced by JSPParser#dtd.
	VisitDtd(ctx *DtdContext) interface{}

	// Visit a parse tree produced by JSPParser#dtdElementName.
	VisitDtdElementName(ctx *DtdElementNameContext) interface{}

	// Visit a parse tree produced by JSPParser#publicId.
	VisitPublicId(ctx *PublicIdContext) interface{}

	// Visit a parse tree produced by JSPParser#systemId.
	VisitSystemId(ctx *SystemIdContext) interface{}

	// Visit a parse tree produced by JSPParser#xml.
	VisitXml(ctx *XmlContext) interface{}

	// Visit a parse tree produced by JSPParser#jspScriptlet.
	VisitJspScriptlet(ctx *JspScriptletContext) interface{}

	// Visit a parse tree produced by JSPParser#jspExpression.
	VisitJspExpression(ctx *JspExpressionContext) interface{}

	// Visit a parse tree produced by JSPParser#scriptletStart.
	VisitScriptletStart(ctx *ScriptletStartContext) interface{}

	// Visit a parse tree produced by JSPParser#scriptletContent.
	VisitScriptletContent(ctx *ScriptletContentContext) interface{}

	// Visit a parse tree produced by JSPParser#javaScript.
	VisitJavaScript(ctx *JavaScriptContext) interface{}

	// Visit a parse tree produced by JSPParser#style.
	VisitStyle(ctx *StyleContext) interface{}
}

A complete Visitor for a parse tree produced by JSPParser.

type JavaScriptContext

type JavaScriptContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyJavaScriptContext

func NewEmptyJavaScriptContext() *JavaScriptContext

func NewJavaScriptContext

func NewJavaScriptContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JavaScriptContext

func (*JavaScriptContext) Accept

func (s *JavaScriptContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JavaScriptContext) GetParser

func (s *JavaScriptContext) GetParser() antlr.Parser

func (*JavaScriptContext) GetRuleContext

func (s *JavaScriptContext) GetRuleContext() antlr.RuleContext

func (*JavaScriptContext) IsJavaScriptContext

func (*JavaScriptContext) IsJavaScriptContext()

func (*JavaScriptContext) SCRIPT_BODY

func (s *JavaScriptContext) SCRIPT_BODY() antlr.TerminalNode

func (*JavaScriptContext) SCRIPT_OPEN

func (s *JavaScriptContext) SCRIPT_OPEN() antlr.TerminalNode

func (*JavaScriptContext) SCRIPT_SHORT_BODY

func (s *JavaScriptContext) SCRIPT_SHORT_BODY() antlr.TerminalNode

func (*JavaScriptContext) ToStringTree

func (s *JavaScriptContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type JspDirectiveContext

type JspDirectiveContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyJspDirectiveContext

func NewEmptyJspDirectiveContext() *JspDirectiveContext

func NewJspDirectiveContext

func NewJspDirectiveContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspDirectiveContext

func (*JspDirectiveContext) Accept

func (s *JspDirectiveContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspDirectiveContext) AllHtmlAttribute

func (s *JspDirectiveContext) AllHtmlAttribute() []IHtmlAttributeContext

func (*JspDirectiveContext) AllTAG_WHITESPACE

func (s *JspDirectiveContext) AllTAG_WHITESPACE() []antlr.TerminalNode

func (*JspDirectiveContext) DIRECTIVE_BEGIN

func (s *JspDirectiveContext) DIRECTIVE_BEGIN() antlr.TerminalNode

func (*JspDirectiveContext) DIRECTIVE_END

func (s *JspDirectiveContext) DIRECTIVE_END() antlr.TerminalNode

func (*JspDirectiveContext) GetParser

func (s *JspDirectiveContext) GetParser() antlr.Parser

func (*JspDirectiveContext) GetRuleContext

func (s *JspDirectiveContext) GetRuleContext() antlr.RuleContext

func (*JspDirectiveContext) HtmlAttribute

func (s *JspDirectiveContext) HtmlAttribute(i int) IHtmlAttributeContext

func (*JspDirectiveContext) HtmlTagName

func (s *JspDirectiveContext) HtmlTagName() IHtmlTagNameContext

func (*JspDirectiveContext) IsJspDirectiveContext

func (*JspDirectiveContext) IsJspDirectiveContext()

func (*JspDirectiveContext) TAG_WHITESPACE

func (s *JspDirectiveContext) TAG_WHITESPACE(i int) antlr.TerminalNode

func (*JspDirectiveContext) ToStringTree

func (s *JspDirectiveContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type JspDocumentContext

type JspDocumentContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyJspDocumentContext

func NewEmptyJspDocumentContext() *JspDocumentContext

func NewJspDocumentContext

func NewJspDocumentContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspDocumentContext

func (*JspDocumentContext) Accept

func (s *JspDocumentContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspDocumentContext) Dtd

func (*JspDocumentContext) GetParser

func (s *JspDocumentContext) GetParser() antlr.Parser

func (*JspDocumentContext) GetRuleContext

func (s *JspDocumentContext) GetRuleContext() antlr.RuleContext

func (*JspDocumentContext) IsJspDocumentContext

func (*JspDocumentContext) IsJspDocumentContext()

func (*JspDocumentContext) JspElements

func (s *JspDocumentContext) JspElements() IJspElementsContext

func (*JspDocumentContext) ToStringTree

func (s *JspDocumentContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*JspDocumentContext) Xml

type JspDocumentsContext

type JspDocumentsContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyJspDocumentsContext

func NewEmptyJspDocumentsContext() *JspDocumentsContext

func NewJspDocumentsContext

func NewJspDocumentsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspDocumentsContext

func (*JspDocumentsContext) Accept

func (s *JspDocumentsContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspDocumentsContext) AllJspDocument

func (s *JspDocumentsContext) AllJspDocument() []IJspDocumentContext

func (*JspDocumentsContext) AllJspStart

func (s *JspDocumentsContext) AllJspStart() []IJspStartContext

func (*JspDocumentsContext) GetParser

func (s *JspDocumentsContext) GetParser() antlr.Parser

func (*JspDocumentsContext) GetRuleContext

func (s *JspDocumentsContext) GetRuleContext() antlr.RuleContext

func (*JspDocumentsContext) IsJspDocumentsContext

func (*JspDocumentsContext) IsJspDocumentsContext()

func (*JspDocumentsContext) JspDocument

func (s *JspDocumentsContext) JspDocument(i int) IJspDocumentContext

func (*JspDocumentsContext) JspStart

func (s *JspDocumentsContext) JspStart(i int) IJspStartContext

func (*JspDocumentsContext) ToStringTree

func (s *JspDocumentsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type JspElementsContext

type JspElementsContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyJspElementsContext

func NewEmptyJspElementsContext() *JspElementsContext

func NewJspElementsContext

func NewJspElementsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspElementsContext

func (*JspElementsContext) Accept

func (s *JspElementsContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspElementsContext) AllHtmlMiscs

func (s *JspElementsContext) AllHtmlMiscs() []IHtmlMiscsContext

func (*JspElementsContext) GetAfterContent

func (s *JspElementsContext) GetAfterContent() IHtmlMiscsContext

func (*JspElementsContext) GetBeforeContent

func (s *JspElementsContext) GetBeforeContent() IHtmlMiscsContext

func (*JspElementsContext) GetParser

func (s *JspElementsContext) GetParser() antlr.Parser

func (*JspElementsContext) GetRuleContext

func (s *JspElementsContext) GetRuleContext() antlr.RuleContext

func (*JspElementsContext) HtmlElement

func (s *JspElementsContext) HtmlElement() IHtmlElementContext

func (*JspElementsContext) HtmlMiscs

func (s *JspElementsContext) HtmlMiscs(i int) IHtmlMiscsContext

func (*JspElementsContext) IsJspElementsContext

func (*JspElementsContext) IsJspElementsContext()

func (*JspElementsContext) JavaScript

func (s *JspElementsContext) JavaScript() IJavaScriptContext

func (*JspElementsContext) JspExpression

func (s *JspElementsContext) JspExpression() IJspExpressionContext

func (*JspElementsContext) JspScript

func (s *JspElementsContext) JspScript() IJspScriptContext

func (*JspElementsContext) SetAfterContent

func (s *JspElementsContext) SetAfterContent(v IHtmlMiscsContext)

func (*JspElementsContext) SetBeforeContent

func (s *JspElementsContext) SetBeforeContent(v IHtmlMiscsContext)

func (*JspElementsContext) Style

func (s *JspElementsContext) Style() IStyleContext

func (*JspElementsContext) ToStringTree

func (s *JspElementsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type JspExpressionContext

type JspExpressionContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyJspExpressionContext

func NewEmptyJspExpressionContext() *JspExpressionContext

func NewJspExpressionContext

func NewJspExpressionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspExpressionContext

func (*JspExpressionContext) Accept

func (s *JspExpressionContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspExpressionContext) ECHO_EXPRESSION_OPEN

func (s *JspExpressionContext) ECHO_EXPRESSION_OPEN() antlr.TerminalNode

func (*JspExpressionContext) GetParser

func (s *JspExpressionContext) GetParser() antlr.Parser

func (*JspExpressionContext) GetRuleContext

func (s *JspExpressionContext) GetRuleContext() antlr.RuleContext

func (*JspExpressionContext) IsJspExpressionContext

func (*JspExpressionContext) IsJspExpressionContext()

func (*JspExpressionContext) ScriptletContent

func (s *JspExpressionContext) ScriptletContent() IScriptletContentContext

func (*JspExpressionContext) ToStringTree

func (s *JspExpressionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type JspScriptContext

type JspScriptContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyJspScriptContext

func NewEmptyJspScriptContext() *JspScriptContext

func NewJspScriptContext

func NewJspScriptContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspScriptContext

func (*JspScriptContext) Accept

func (s *JspScriptContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspScriptContext) GetParser

func (s *JspScriptContext) GetParser() antlr.Parser

func (*JspScriptContext) GetRuleContext

func (s *JspScriptContext) GetRuleContext() antlr.RuleContext

func (*JspScriptContext) IsJspScriptContext

func (*JspScriptContext) IsJspScriptContext()

func (*JspScriptContext) JspDirective

func (s *JspScriptContext) JspDirective() IJspDirectiveContext

func (*JspScriptContext) JspScriptlet

func (s *JspScriptContext) JspScriptlet() IJspScriptletContext

func (*JspScriptContext) ToStringTree

func (s *JspScriptContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type JspScriptletContext

type JspScriptletContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyJspScriptletContext

func NewEmptyJspScriptletContext() *JspScriptletContext

func NewJspScriptletContext

func NewJspScriptletContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspScriptletContext

func (*JspScriptletContext) Accept

func (s *JspScriptletContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspScriptletContext) GetParser

func (s *JspScriptletContext) GetParser() antlr.Parser

func (*JspScriptletContext) GetRuleContext

func (s *JspScriptletContext) GetRuleContext() antlr.RuleContext

func (*JspScriptletContext) IsJspScriptletContext

func (*JspScriptletContext) IsJspScriptletContext()

func (*JspScriptletContext) JspExpression

func (s *JspScriptletContext) JspExpression() IJspExpressionContext

func (*JspScriptletContext) ScriptletContent

func (s *JspScriptletContext) ScriptletContent() IScriptletContentContext

func (*JspScriptletContext) ScriptletStart

func (s *JspScriptletContext) ScriptletStart() IScriptletStartContext

func (*JspScriptletContext) ToStringTree

func (s *JspScriptletContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type JspStartContext

type JspStartContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyJspStartContext

func NewEmptyJspStartContext() *JspStartContext

func NewJspStartContext

func NewJspStartContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspStartContext

func (*JspStartContext) Accept

func (s *JspStartContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspStartContext) GetParser

func (s *JspStartContext) GetParser() antlr.Parser

func (*JspStartContext) GetRuleContext

func (s *JspStartContext) GetRuleContext() antlr.RuleContext

func (*JspStartContext) IsJspStartContext

func (*JspStartContext) IsJspStartContext()

func (*JspStartContext) JspScript

func (s *JspStartContext) JspScript() IJspScriptContext

func (*JspStartContext) ToStringTree

func (s *JspStartContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*JspStartContext) WHITESPACES

func (s *JspStartContext) WHITESPACES() antlr.TerminalNode

type PublicIdContext

type PublicIdContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyPublicIdContext

func NewEmptyPublicIdContext() *PublicIdContext

func NewPublicIdContext

func NewPublicIdContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *PublicIdContext

func (*PublicIdContext) Accept

func (s *PublicIdContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*PublicIdContext) DTD_QUOTED

func (s *PublicIdContext) DTD_QUOTED() antlr.TerminalNode

func (*PublicIdContext) GetParser

func (s *PublicIdContext) GetParser() antlr.Parser

func (*PublicIdContext) GetRuleContext

func (s *PublicIdContext) GetRuleContext() antlr.RuleContext

func (*PublicIdContext) IsPublicIdContext

func (*PublicIdContext) IsPublicIdContext()

func (*PublicIdContext) ToStringTree

func (s *PublicIdContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type PureHTMLAttributeContext

type PureHTMLAttributeContext struct {
	*HtmlAttributeContext
}

func NewPureHTMLAttributeContext

func NewPureHTMLAttributeContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *PureHTMLAttributeContext

func (*PureHTMLAttributeContext) Accept

func (s *PureHTMLAttributeContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*PureHTMLAttributeContext) GetRuleContext

func (s *PureHTMLAttributeContext) GetRuleContext() antlr.RuleContext

func (*PureHTMLAttributeContext) HtmlAttributeName

func (s *PureHTMLAttributeContext) HtmlAttributeName() IHtmlAttributeNameContext

type ScriptletContentContext

type ScriptletContentContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyScriptletContentContext

func NewEmptyScriptletContentContext() *ScriptletContentContext

func NewScriptletContentContext

func NewScriptletContentContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ScriptletContentContext

func (*ScriptletContentContext) Accept

func (s *ScriptletContentContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*ScriptletContentContext) BLOB_CLOSE

func (s *ScriptletContentContext) BLOB_CLOSE() antlr.TerminalNode

func (*ScriptletContentContext) BLOB_CONTENT

func (s *ScriptletContentContext) BLOB_CONTENT() antlr.TerminalNode

func (*ScriptletContentContext) GetParser

func (s *ScriptletContentContext) GetParser() antlr.Parser

func (*ScriptletContentContext) GetRuleContext

func (s *ScriptletContentContext) GetRuleContext() antlr.RuleContext

func (*ScriptletContentContext) IsScriptletContentContext

func (*ScriptletContentContext) IsScriptletContentContext()

func (*ScriptletContentContext) ToStringTree

func (s *ScriptletContentContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ScriptletStartContext

type ScriptletStartContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyScriptletStartContext

func NewEmptyScriptletStartContext() *ScriptletStartContext

func NewScriptletStartContext

func NewScriptletStartContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ScriptletStartContext

func (*ScriptletStartContext) Accept

func (s *ScriptletStartContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*ScriptletStartContext) DECLARATION_BEGIN

func (s *ScriptletStartContext) DECLARATION_BEGIN() antlr.TerminalNode

func (*ScriptletStartContext) GetParser

func (s *ScriptletStartContext) GetParser() antlr.Parser

func (*ScriptletStartContext) GetRuleContext

func (s *ScriptletStartContext) GetRuleContext() antlr.RuleContext

func (*ScriptletStartContext) IsScriptletStartContext

func (*ScriptletStartContext) IsScriptletStartContext()

func (*ScriptletStartContext) SCRIPTLET_OPEN

func (s *ScriptletStartContext) SCRIPTLET_OPEN() antlr.TerminalNode

func (*ScriptletStartContext) ToStringTree

func (s *ScriptletStartContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type StyleContext

type StyleContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyStyleContext

func NewEmptyStyleContext() *StyleContext

func NewStyleContext

func NewStyleContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *StyleContext

func (*StyleContext) Accept

func (s *StyleContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*StyleContext) GetParser

func (s *StyleContext) GetParser() antlr.Parser

func (*StyleContext) GetRuleContext

func (s *StyleContext) GetRuleContext() antlr.RuleContext

func (*StyleContext) IsStyleContext

func (*StyleContext) IsStyleContext()

func (*StyleContext) STYLE_BODY

func (s *StyleContext) STYLE_BODY() antlr.TerminalNode

func (*StyleContext) STYLE_OPEN

func (s *StyleContext) STYLE_OPEN() antlr.TerminalNode

func (*StyleContext) STYLE_SHORT_BODY

func (s *StyleContext) STYLE_SHORT_BODY() antlr.TerminalNode

func (*StyleContext) ToStringTree

func (s *StyleContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type SystemIdContext

type SystemIdContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptySystemIdContext

func NewEmptySystemIdContext() *SystemIdContext

func NewSystemIdContext

func NewSystemIdContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *SystemIdContext

func (*SystemIdContext) Accept

func (s *SystemIdContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*SystemIdContext) DTD_QUOTED

func (s *SystemIdContext) DTD_QUOTED() antlr.TerminalNode

func (*SystemIdContext) GetParser

func (s *SystemIdContext) GetParser() antlr.Parser

func (*SystemIdContext) GetRuleContext

func (s *SystemIdContext) GetRuleContext() antlr.RuleContext

func (*SystemIdContext) IsSystemIdContext

func (*SystemIdContext) IsSystemIdContext()

func (*SystemIdContext) ToStringTree

func (s *SystemIdContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type XhtmlCDATAContext

type XhtmlCDATAContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyXhtmlCDATAContext

func NewEmptyXhtmlCDATAContext() *XhtmlCDATAContext

func NewXhtmlCDATAContext

func NewXhtmlCDATAContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *XhtmlCDATAContext

func (*XhtmlCDATAContext) Accept

func (s *XhtmlCDATAContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*XhtmlCDATAContext) CDATA

func (s *XhtmlCDATAContext) CDATA() antlr.TerminalNode

func (*XhtmlCDATAContext) GetParser

func (s *XhtmlCDATAContext) GetParser() antlr.Parser

func (*XhtmlCDATAContext) GetRuleContext

func (s *XhtmlCDATAContext) GetRuleContext() antlr.RuleContext

func (*XhtmlCDATAContext) IsXhtmlCDATAContext

func (*XhtmlCDATAContext) IsXhtmlCDATAContext()

func (*XhtmlCDATAContext) ToStringTree

func (s *XhtmlCDATAContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type XmlContext

type XmlContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyXmlContext

func NewEmptyXmlContext() *XmlContext

func NewXmlContext

func NewXmlContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *XmlContext

func (*XmlContext) Accept

func (s *XmlContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*XmlContext) AllHtmlAttribute

func (s *XmlContext) AllHtmlAttribute() []IHtmlAttributeContext

func (*XmlContext) GetAtts

func (s *XmlContext) GetAtts() []IHtmlAttributeContext

func (*XmlContext) GetName

func (s *XmlContext) GetName() IHtmlTagNameContext

func (*XmlContext) GetParser

func (s *XmlContext) GetParser() antlr.Parser

func (*XmlContext) GetRuleContext

func (s *XmlContext) GetRuleContext() antlr.RuleContext

func (*XmlContext) Get_htmlAttribute

func (s *XmlContext) Get_htmlAttribute() IHtmlAttributeContext

func (*XmlContext) HtmlAttribute

func (s *XmlContext) HtmlAttribute(i int) IHtmlAttributeContext

func (*XmlContext) HtmlTagName

func (s *XmlContext) HtmlTagName() IHtmlTagNameContext

func (*XmlContext) IsXmlContext

func (*XmlContext) IsXmlContext()

func (*XmlContext) SetAtts

func (s *XmlContext) SetAtts(v []IHtmlAttributeContext)

func (*XmlContext) SetName

func (s *XmlContext) SetName(v IHtmlTagNameContext)

func (*XmlContext) Set_htmlAttribute

func (s *XmlContext) Set_htmlAttribute(v IHtmlAttributeContext)

func (*XmlContext) TAG_END

func (s *XmlContext) TAG_END() antlr.TerminalNode

func (*XmlContext) ToStringTree

func (s *XmlContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*XmlContext) XML_DECLARATION

func (s *XmlContext) XML_DECLARATION() antlr.TerminalNode

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL