org.stringtemplate.v4.STGroup.compile()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(11.5k)|赞(0)|评价(0)|浏览(71)

本文整理了Java中org.stringtemplate.v4.STGroup.compile()方法的一些代码示例,展示了STGroup.compile()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。STGroup.compile()方法的具体详情如下:
包路径:org.stringtemplate.v4.STGroup
类名称:STGroup
方法名:compile

STGroup.compile介绍

[英]Compile a template.
[中]编译一个模板。

代码示例

代码示例来源:origin: jsevellec/cassandra-unit

public ST(STGroup group, String template) {
  this();
  groupThatCreatedThisInstance = group;
  impl = groupThatCreatedThisInstance.compile(group.getFileName(), null,
                        null, template, null);
  impl.hasFormalArgs = false;
  impl.name = UNKNOWN_NAME;
  impl.defineImplicitlyDefinedTemplates(groupThatCreatedThisInstance);
}

代码示例来源:origin: antlr/stringtemplate4

public ST(STGroup group, String template) {
  this();
  groupThatCreatedThisInstance = group;
  impl = groupThatCreatedThisInstance.compile(group.getFileName(), null,
                        null, template, null);
  impl.hasFormalArgs = false;
  impl.name = UNKNOWN_NAME;
  impl.defineImplicitlyDefinedTemplates(groupThatCreatedThisInstance);
}

代码示例来源:origin: antlr/antlr3

public ST(STGroup group, String template) {
  this();
  groupThatCreatedThisInstance = group;
  impl = groupThatCreatedThisInstance.compile(group.getFileName(), null,
                        null, template, null);
  impl.hasFormalArgs = false;
  impl.name = UNKNOWN_NAME;
  impl.defineImplicitlyDefinedTemplates(groupThatCreatedThisInstance);
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

public ST(STGroup group, String template) {
  this();
  groupThatCreatedThisInstance = group;
  impl = groupThatCreatedThisInstance.compile(group.getFileName(), null,
                        null, template, null);
  impl.hasFormalArgs = false;
  impl.name = UNKNOWN_NAME;
  impl.defineImplicitlyDefinedTemplates(groupThatCreatedThisInstance);
}

代码示例来源:origin: org.antlr/ST4

public ST(STGroup group, String template) {
  this();
  groupThatCreatedThisInstance = group;
  impl = groupThatCreatedThisInstance.compile(group.getFileName(), null,
                        null, template, null);
  impl.hasFormalArgs = false;
  impl.name = UNKNOWN_NAME;
  impl.defineImplicitlyDefinedTemplates(groupThatCreatedThisInstance);
}

代码示例来源:origin: org.antlr/stringtemplate

public ST(STGroup group, String template) {
  this();
  groupThatCreatedThisInstance = group;
  impl = groupThatCreatedThisInstance.compile(group.getFileName(), null,
                        null, template, null);
  impl.hasFormalArgs = false;
  impl.name = UNKNOWN_NAME;
  impl.defineImplicitlyDefinedTemplates(groupThatCreatedThisInstance);
}

代码示例来源:origin: io.virtdata/virtdata-lib-realer

public ST(STGroup group, String template) {
  this();
  groupThatCreatedThisInstance = group;
  impl = groupThatCreatedThisInstance.compile(group.getFileName(), null,
                        null, template, null);
  impl.hasFormalArgs = false;
  impl.name = UNKNOWN_NAME;
  impl.defineImplicitlyDefinedTemplates(groupThatCreatedThisInstance);
}

代码示例来源:origin: apache/servicemix-bundles

public ST(STGroup group, String template) {
  this();
  groupThatCreatedThisInstance = group;
  impl = groupThatCreatedThisInstance.compile(group.getFileName(), null,
                        null, template, null);
  impl.hasFormalArgs = false;
  impl.name = UNKNOWN_NAME;
  impl.defineImplicitlyDefinedTemplates(groupThatCreatedThisInstance);
}

代码示例来源:origin: antlr/stringtemplate4

public CompiledST defineTemplate(String fullyQualifiedTemplateName,
                 Token nameT,
                 List<FormalArgument> args,
                 String template,
                 Token templateToken)
{
  if ( verbose ) System.out.println("defineTemplate("+fullyQualifiedTemplateName+")");
  if ( fullyQualifiedTemplateName==null || fullyQualifiedTemplateName.length()==0 ) {
    throw new IllegalArgumentException("empty template name");
  }
  if ( fullyQualifiedTemplateName.indexOf('.')>=0 ) {
    throw new IllegalArgumentException("cannot have '.' in template names");
  }
  template = Misc.trimOneStartingNewline(template);
  template = Misc.trimOneTrailingNewline(template);
  // compile, passing in templateName as enclosing name for any embedded regions
  CompiledST code = compile(getFileName(), fullyQualifiedTemplateName, args, template, templateToken);
  code.name = fullyQualifiedTemplateName;
  rawDefineTemplate(fullyQualifiedTemplateName, code, nameT);
  code.defineArgDefaultValueTemplates(this);
  code.defineImplicitlyDefinedTemplates(this); // define any anonymous subtemplates
  return code;
}

代码示例来源:origin: antlr/antlr3

public CompiledST defineTemplate(String fullyQualifiedTemplateName,
                 Token nameT,
                 List<FormalArgument> args,
                 String template,
                 Token templateToken)
{
  if ( verbose ) System.out.println("defineTemplate("+fullyQualifiedTemplateName+")");
  if ( fullyQualifiedTemplateName==null || fullyQualifiedTemplateName.length()==0 ) {
    throw new IllegalArgumentException("empty template name");
  }
  if ( fullyQualifiedTemplateName.indexOf('.')>=0 ) {
    throw new IllegalArgumentException("cannot have '.' in template names");
  }
  template = Misc.trimOneStartingNewline(template);
  template = Misc.trimOneTrailingNewline(template);
  // compile, passing in templateName as enclosing name for any embedded regions
  CompiledST code = compile(getFileName(), fullyQualifiedTemplateName, args, template, templateToken);
  code.name = fullyQualifiedTemplateName;
  rawDefineTemplate(fullyQualifiedTemplateName, code, nameT);
  code.defineArgDefaultValueTemplates(this);
  code.defineImplicitlyDefinedTemplates(this); // define any anonymous subtemplates
  return code;
}

代码示例来源:origin: org.antlr/ST4

public CompiledST defineTemplate(String fullyQualifiedTemplateName,
                 Token nameT,
                 List<FormalArgument> args,
                 String template,
                 Token templateToken)
{
  if ( verbose ) System.out.println("defineTemplate("+fullyQualifiedTemplateName+")");
  if ( fullyQualifiedTemplateName==null || fullyQualifiedTemplateName.length()==0 ) {
    throw new IllegalArgumentException("empty template name");
  }
  if ( fullyQualifiedTemplateName.indexOf('.')>=0 ) {
    throw new IllegalArgumentException("cannot have '.' in template names");
  }
  template = Misc.trimOneStartingNewline(template);
  template = Misc.trimOneTrailingNewline(template);
  // compile, passing in templateName as enclosing name for any embedded regions
  CompiledST code = compile(getFileName(), fullyQualifiedTemplateName, args, template, templateToken);
  code.name = fullyQualifiedTemplateName;
  rawDefineTemplate(fullyQualifiedTemplateName, code, nameT);
  code.defineArgDefaultValueTemplates(this);
  code.defineImplicitlyDefinedTemplates(this); // define any anonymous subtemplates
  return code;
}

代码示例来源:origin: org.antlr/stringtemplate

public CompiledST defineTemplate(String templateName,
                 Token nameT,
                 List<FormalArgument> args,
                 String template,
                 Token templateToken)
{
  if ( templateName==null || templateName.length()==0 ) {
    throw new IllegalArgumentException("empty template name");
  }
  if ( templateName.indexOf('.')>=0 ) {
    throw new IllegalArgumentException("cannot have '.' in template names");
  }
  template = Misc.trimOneStartingNewline(template);
  template = Misc.trimOneTrailingNewline(template);
  // compile, passing in templateName as enclosing name for any embedded regions
  CompiledST code = compile(getFileName(), templateName, args, template, templateToken);
  code.name = templateName;
  rawDefineTemplate(templateName, code, nameT);
  code.defineArgDefaultValueTemplates(this);
  code.defineImplicitlyDefinedTemplates(this); // define any anonymous subtemplates
  return code;
}

代码示例来源:origin: io.virtdata/virtdata-lib-realer

/** Create singleton template for use with dictionary values. */
public ST createSingleton(Token templateToken) {
  String template;
  if ( templateToken.getType()==GroupParser.BIGSTRING ) {
    template = Misc.strip(templateToken.getText(),2);
  }
  else {
    template = Misc.strip(templateToken.getText(),1);
  }
  CompiledST impl = compile(getFileName(), null, null, template, templateToken);
  ST st = createStringTemplateInternally(impl);
  st.groupThatCreatedThisInstance = this;
  st.impl.hasFormalArgs = false;
  st.impl.name = ST.UNKNOWN_NAME;
  st.impl.defineImplicitlyDefinedTemplates(this);
  return st;
}

代码示例来源:origin: antlr/antlr3

/** Create singleton template for use with dictionary values. */
public ST createSingleton(Token templateToken) {
  String template;
  if ( templateToken.getType()==GroupParser.BIGSTRING ) {
    template = Misc.strip(templateToken.getText(),2);
  }
  else {
    template = Misc.strip(templateToken.getText(),1);
  }
  CompiledST impl = compile(getFileName(), null, null, template, templateToken);
  ST st = createStringTemplateInternally(impl);
  st.groupThatCreatedThisInstance = this;
  st.impl.hasFormalArgs = false;
  st.impl.name = ST.UNKNOWN_NAME;
  st.impl.defineImplicitlyDefinedTemplates(this);
  return st;
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/** Create singleton template for use with dictionary values. */
public ST createSingleton(Token templateToken) {
  String template;
  if ( templateToken.getType()==GroupParser.BIGSTRING ) {
    template = Misc.strip(templateToken.getText(),2);
  }
  else {
    template = Misc.strip(templateToken.getText(),1);
  }
  CompiledST impl = compile(getFileName(), null, null, template, templateToken);
  ST st = createStringTemplateInternally(impl);
  st.groupThatCreatedThisInstance = this;
  st.impl.hasFormalArgs = false;
  st.impl.name = ST.UNKNOWN_NAME;
  st.impl.defineImplicitlyDefinedTemplates(this);
  return st;
}

代码示例来源:origin: org.antlr/stringtemplate

/** Create singleton template for use with dictionary values */
public ST createSingleton(Token templateToken) {
  String template;
  if ( templateToken.getType()==GroupParser.BIGSTRING ) {
    template = Misc.strip(templateToken.getText(),2);
  }
  else {
    template = Misc.strip(templateToken.getText(),1);
  }
  CompiledST impl = compile(getFileName(), null, null, template, templateToken);
  ST st = createStringTemplateInternally(impl);
  st.groupThatCreatedThisInstance = this;
  st.impl.hasFormalArgs = false;
  st.impl.name = ST.UNKNOWN_NAME;
  st.impl.defineImplicitlyDefinedTemplates(this);
  return st;
}

代码示例来源:origin: jsevellec/cassandra-unit

/** Create singleton template for use with dictionary values. */
public ST createSingleton(Token templateToken) {
  String template;
  if ( templateToken.getType()==GroupParser.BIGSTRING ) {
    template = Misc.strip(templateToken.getText(),2);
  }
  else {
    template = Misc.strip(templateToken.getText(),1);
  }
  CompiledST impl = compile(getFileName(), null, null, template, templateToken);
  ST st = createStringTemplateInternally(impl);
  st.groupThatCreatedThisInstance = this;
  st.impl.hasFormalArgs = false;
  st.impl.name = ST.UNKNOWN_NAME;
  st.impl.defineImplicitlyDefinedTemplates(this);
  return st;
}

代码示例来源:origin: antlr/stringtemplate4

/** Create singleton template for use with dictionary values. */
public ST createSingleton(Token templateToken) {
  String template;
  if ( templateToken.getType()==GroupParser.BIGSTRING || templateToken.getType()==GroupParser.BIGSTRING_NO_NL ) {
    template = Misc.strip(templateToken.getText(),2);
  }
  else {
    template = Misc.strip(templateToken.getText(),1);
  }
  CompiledST impl = compile(getFileName(), null, null, template, templateToken);
  ST st = createStringTemplateInternally(impl);
  st.groupThatCreatedThisInstance = this;
  st.impl.hasFormalArgs = false;
  st.impl.name = ST.UNKNOWN_NAME;
  st.impl.defineImplicitlyDefinedTemplates(this);
  return st;
}

代码示例来源:origin: org.antlr/ST4

/** Create singleton template for use with dictionary values. */
public ST createSingleton(Token templateToken) {
  String template;
  if ( templateToken.getType()==GroupParser.BIGSTRING || templateToken.getType()==GroupParser.BIGSTRING_NO_NL ) {
    template = Misc.strip(templateToken.getText(),2);
  }
  else {
    template = Misc.strip(templateToken.getText(),1);
  }
  CompiledST impl = compile(getFileName(), null, null, template, templateToken);
  ST st = createStringTemplateInternally(impl);
  st.groupThatCreatedThisInstance = this;
  st.impl.hasFormalArgs = false;
  st.impl.name = ST.UNKNOWN_NAME;
  st.impl.defineImplicitlyDefinedTemplates(this);
  return st;
}

代码示例来源:origin: apache/servicemix-bundles

/** Create singleton template for use with dictionary values. */
public ST createSingleton(Token templateToken) {
  String template;
  if ( templateToken.getType()==GroupParser.BIGSTRING || templateToken.getType()==GroupParser.BIGSTRING_NO_NL ) {
    template = Misc.strip(templateToken.getText(),2);
  }
  else {
    template = Misc.strip(templateToken.getText(),1);
  }
  CompiledST impl = compile(getFileName(), null, null, template, templateToken);
  ST st = createStringTemplateInternally(impl);
  st.groupThatCreatedThisInstance = this;
  st.impl.hasFormalArgs = false;
  st.impl.name = ST.UNKNOWN_NAME;
  st.impl.defineImplicitlyDefinedTemplates(this);
  return st;
}

相关文章

微信公众号

最新文章

更多