Class AbstractTemplateSuiteGenerator
java.lang.Object
org.apache.tiles.autotag.generate.AbstractTemplateSuiteGenerator
- All Implemented Interfaces:
- TemplateSuiteGenerator
- Direct Known Subclasses:
- FMModelRepositoryGenerator,- TLDGenerator,- VelocityPropertiesGenerator
public abstract class AbstractTemplateSuiteGenerator
extends Object
implements TemplateSuiteGenerator
A base template suite generator.
- 
Constructor SummaryConstructorsConstructorDescriptionAbstractTemplateSuiteGenerator(org.apache.velocity.app.VelocityEngine velocityEngine) Constructor.
- 
Method SummaryModifier and TypeMethodDescriptionvoidGenerates the code.protected abstract StringgetDirectoryName(File directory, String packageName, TemplateSuite suite, Map<String, String> parameters) Calculates and returns the directory where the file will be written..protected abstract StringgetFilename(File directory, String packageName, TemplateSuite suite, Map<String, String> parameters) Calculates and returns the filename of the generated file.protected abstract StringgetTemplatePath(File directory, String packageName, TemplateSuite suite, Map<String, String> parameters) Calculates and returns the template path.
- 
Constructor Details- 
AbstractTemplateSuiteGeneratorpublic AbstractTemplateSuiteGenerator(org.apache.velocity.app.VelocityEngine velocityEngine) Constructor.- Parameters:
- velocityEngine- The Velocity engine.
 
 
- 
- 
Method Details- 
generatepublic void generate(File directory, String packageName, TemplateSuite suite, Map<String, String> parameters) Description copied from interface:TemplateSuiteGeneratorGenerates the code.- Specified by:
- generatein interface- TemplateSuiteGenerator
- Parameters:
- directory- The base directory where the code will be put.
- packageName- The package name.
- suite- The template suite.
- parameters- Configuration parameters.
 
- 
getTemplatePathprotected abstract String getTemplatePath(File directory, String packageName, TemplateSuite suite, Map<String, String> parameters) Calculates and returns the template path.- Parameters:
- directory- The directory where the file will be written.
- packageName- The name of the package.
- suite- The template suite.
- parameters- The map of parameters.
- Returns:
- The template path.
 
- 
getFilenameprotected abstract String getFilename(File directory, String packageName, TemplateSuite suite, Map<String, String> parameters) Calculates and returns the filename of the generated file.- Parameters:
- directory- The directory where the file will be written.
- packageName- The name of the package.
- suite- The template suite.
- parameters- The map of parameters.
- Returns:
- The template path.
 
- 
getDirectoryNameprotected abstract String getDirectoryName(File directory, String packageName, TemplateSuite suite, Map<String, String> parameters) Calculates and returns the directory where the file will be written..- Parameters:
- directory- The directory where the file will be written.
- packageName- The name of the package.
- suite- The template suite.
- parameters- The map of parameters.
- Returns:
- The template path.
 
 
-