| File header |
Used when
creating
new Java files. Contains a header comment and a package
statement. |
| Class |
Used when
generating
a new (nested) class. Contains a class declaration, a constructor, a
component initialization method and variable declarations. |
| Empty Class |
Used when
generating
a new empty class. This can happen, if all form components are
contained in nested classes. |
| Event Handler Body |
Used for event handler method bodies. |
| Component
initialization |
Replaces
the variable ${component_initialization}
used in other templates. Contains a method named initComponents.
Invoke this method from your code to instantiate the components of your
form. Feel free to change the method name if you don't like it. |
| Variables
declaration |
Replaces
the variable ${variables_declaration}
used in other templates. |
| java.awt.Dialog |
A template
for
classes derived from java.awt.Dialog.
Compared to the “Class” template, this has special
constructors, which
are necessary for java.awt.Dialog
derived classes. |
| javax.swing.AbstractAction |
Used for nested action classes. |