Uses of Class
org.stringtemplate.v4.compiler.CompiledST
-
Packages that use CompiledST Package Description org.stringtemplate.v4 org.stringtemplate.v4.compiler -
-
Uses of CompiledST in org.stringtemplate.v4
Fields in org.stringtemplate.v4 declared as CompiledST Modifier and Type Field Description CompiledSTST. implThe implementation for this template among all instances of same template .protected static CompiledSTSTGroup. NOT_FOUND_STUsed to indicate that the template doesn't exist.Fields in org.stringtemplate.v4 with type parameters of type CompiledST Modifier and Type Field Description protected Map<String,CompiledST>STGroup. templatesMaps template name toCompiledSTobject.Methods in org.stringtemplate.v4 that return CompiledST Modifier and Type Method Description CompiledSTSTGroup. compile(String srcName, String name, List<FormalArgument> args, String template, org.antlr.runtime.Token templateToken)Compile a template.CompiledSTSTGroup. defineRegion(String enclosingTemplateName, org.antlr.runtime.Token regionT, String template, org.antlr.runtime.Token templateToken)CompiledSTSTGroup. defineTemplate(String templateName, String template)for testingCompiledSTSTGroup. defineTemplate(String name, String argsS, String template)for testingCompiledSTSTGroup. defineTemplate(String fullyQualifiedTemplateName, org.antlr.runtime.Token nameT, List<FormalArgument> args, String template, org.antlr.runtime.Token templateToken)CompiledSTSTGroup. defineTemplateAlias(org.antlr.runtime.Token aliasT, org.antlr.runtime.Token targetT)Make name and alias for target.protected CompiledSTSTGroup. load(String name)Load st from disk if directory or load whole group file if .stg file (then return just one template).protected CompiledSTSTGroupDir. load(String name)Load a template from directory or group file.protected CompiledSTSTGroupFile. load(String name)protected CompiledSTSTGroupString. load(String name)CompiledSTSTGroup. loadAbsoluteTemplateFile(String fileName)Load template file into this group using absolutefileName.CompiledSTSTGroup. loadTemplateFile(String prefix, String unqualifiedFileName, org.antlr.runtime.CharStream templateStream)Load template stream into this group.CompiledSTSTGroupDir. loadTemplateFile(String prefix, String unqualifiedFileName)Load .st as relative file name relative to root byprefix.CompiledSTSTRawGroupDir. loadTemplateFile(String prefix, String unqualifiedFileName, org.antlr.runtime.CharStream templateStream)protected CompiledSTSTGroup. lookupImportedTemplate(String name)CompiledSTSTGroup. lookupTemplate(String name)Look up a fully-qualified name.CompiledSTSTGroup. rawGetTemplate(String name)Methods in org.stringtemplate.v4 with parameters of type CompiledST Modifier and Type Method Description STSTGroup. createStringTemplate(CompiledST impl)STSTGroup. createStringTemplateInternally(CompiledST impl)Differentiate so we can avoid having creation events for regions, map operations, and other implicit "new ST" events during rendering.voidSTGroup. rawDefineTemplate(String name, CompiledST code, org.antlr.runtime.Token defT) -
Uses of CompiledST in org.stringtemplate.v4.compiler
Fields in org.stringtemplate.v4.compiler declared as CompiledST Modifier and Type Field Description CompiledSTFormalArgument. compiledDefaultValueFields in org.stringtemplate.v4.compiler with type parameters of type CompiledST Modifier and Type Field Description List<CompiledST>CompiledST. implicitlyDefinedTemplatesA list of all regions and subtemplates.Methods in org.stringtemplate.v4.compiler that return CompiledST Modifier and Type Method Description CompiledSTCompiledST. clone()Cloning theCompiledSTfor anSTinstance allowsST.add(java.lang.String, java.lang.Object)to be called safely during interpretation for templates that do not contain formal arguments.CompiledSTCompiler. compile(String template)CompiledSTCompiler. compile(String name, String template)Compile full template with unknown formal arguments.CompiledSTCompiler. compile(String srcName, String name, List<FormalArgument> args, String template, org.antlr.runtime.Token templateToken)Compile full template with respect to a list of formal arguments.static CompiledSTCompiler. defineBlankRegion(CompiledST outermostImpl, org.antlr.runtime.Token nameToken)CompiledSTCodeGenerator. template(String name, List<FormalArgument> args)Methods in org.stringtemplate.v4.compiler with parameters of type CompiledST Modifier and Type Method Description voidCompiledST. addImplicitlyDefinedTemplate(CompiledST sub)static CompiledSTCompiler. defineBlankRegion(CompiledST outermostImpl, org.antlr.runtime.Token nameToken)Constructors in org.stringtemplate.v4.compiler with parameters of type CompiledST Constructor Description BytecodeDisassembler(CompiledST code)
-