-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.1.0 - Initial version with TemplateRenderBuilder fix (internally cr…
…eated output stream wasn't being closed automatically after rendering template).
- Loading branch information
1 parent
ac7ae8f
commit 6188104
Showing
3 changed files
with
43 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
JTwg2Templating | ||
============== | ||
version: 0.1.0 | ||
|
||
Templating tools built on top of StringTemplate (http://www.stringtemplate.org/), part of the ANTLR grammar builder/parser. | ||
Templating tools built on top of [StringTemplate] (http://www.stringtemplate.org/), part of the ANTLR grammar builder/parser. | ||
Emphasis on building templates for generating Java source code files. Particularly, classes that rely on a primitive type, for example a primitive 'int' version of ArrayList. | ||
Also includes some example templates in 'commonTemplates' and 'templates' packages. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-------- | ||
####0.1.0 | ||
date: 2016-2-8 | ||
|
||
commit: ? | ||
|
||
* Initial versioning of existing code, includes utilities for easily generating Java classes, interfaces, and DTOs using the [StringTemplate] (http://www.stringtemplate.org/) library | ||
* Fixed TemplateRenderBuilder not closing internal ClassLocation based output stream after rendering template |