| Interface | Description |
|---|---|
| Template |
Definition of a Template used both for writing the Class and the containing elements
|
| Class | Description |
|---|---|
| BlockTemplate |
Simplest implementation of ContentTemplate to write blocks of code
to the output (used for finally, final and static blockstatements)
|
| ClassTemplate |
Template for creating a complete class file
|
| CommentTemplate |
Create a comment in a ClassTemplate
|
| ContentTemplate |
Abstract ContentTemplate which is the basis for most of what a java
method can contain
|
| ExceptionTemplate |
Template for creating a "} catch ([Exception] [ex]) {" statement in a template
|
| IfTemplate |
Template for creating conditions and else statements in another
ContentTemplate
|
| JavaDocTemplate | |
| KeyWords |
Class that implements single static functions
isReserved
and isMethodReserved which checks if a String
is a Java reserved word. |
| Literal |
Literal is a simple wrapper class which makes sure that a value supplied
is written into the template as is for both String and char.
|
| LoopTemplate |
Create a loop element in a method
A loop can either be
DO
WHILE
FOR
|
| MemberTemplate |
Template for creating a Member in a class
|
| MethodTemplate |
Template for creating a Method in a class
|
| TryTemplate |
Create a Try statement.
|
| TypeWriterHelper |
Helper library for TypeWriter
|
| Enum | Description |
|---|---|
| JavaDocTag |
| Exception | Description |
|---|---|
| TypeWriterException |
Exception for problems occurring while invoking TypeWriter methodes
|