Questions tagged [stringtemplate-4]

StringTemplate is a java template engine

StringTemplate is a java template engine (with ports for C#, Python) for generating source code, web pages, emails, or any other formatted text output. StringTemplate is particularly good at code generators, multiple site skins, and internationalization / localization. StringTemplate also generates this website and powers ANTLR.

137 questions
0
votes
1 answer

StringTemplate and Xtext

In my current work, I have written code generator using String Template without thinking about Parser ( I am instantiating Template files using direct Java Object). and code generator generator generates nice Java code. Now, I have started to write…
user-517752
  • 1,188
  • 5
  • 21
  • 54
0
votes
1 answer

How can StringTemplate import directory be used?

I wrote a sample java file that is located in /src folder. public class Main { public static void main(String[] args){ STGroupFile StgFile=new STGroupFile("template.stg"); StgFile.delimiterStartChar = '$'; StgFile.delimiterStopChar =…
Michail Michailidis
  • 11,792
  • 6
  • 63
  • 106
1 2 3
9
10