Package | Description |
---|---|
xdoclet | |
xdoclet.modules.apache | |
xdoclet.modules.apache.bsf | |
xdoclet.modules.apache.velocity | |
xdoclet.template |
Modifier and Type | Class and Description |
---|---|
class |
XDocletException |
Modifier and Type | Method and Description |
---|---|
protected void |
TemplateSubTask.engineFinished()
Describe what the method does
|
protected void |
TemplateSubTask.startEngine(java.net.URL templateURL,
java.io.File outputFile)
Describe what the method does
|
Modifier and Type | Method and Description |
---|---|
protected void |
ScriptEngineTagHandler.escapeResults(TemplateEngine engine,
java.lang.StringBuffer results)
Escape and evaluate the
|
protected void |
ScriptEngineTagHandler.generate(xdoclet.modules.apache.SubTemplateEngine subengine,
java.lang.String template,
java.util.Properties attributes) |
Modifier and Type | Method and Description |
---|---|
void |
BsfEngineTagHandler.generator(java.lang.String template,
java.util.Properties attributes)
Evaluates the body block with the BSF script If the silent="yes" attribute is set then the Generator will not
produce any output, but the template will run.
|
Modifier and Type | Method and Description |
---|---|
void |
VelocityEngineTagHandler.generator(java.lang.String template,
java.util.Properties attributes)
Evaluates the body block with the Velocity template engine If the silent="yes" attribute is set then the
Generator will not produce any output, but the template will run.
|
Modifier and Type | Method and Description |
---|---|
void |
TemplateParser.generate(java.lang.String template)
In this class, this method does not -generate- anything but only parse the files.
|
void |
TemplateEngine.generate(java.lang.String template)
The main template parsing/processing/running logic.
|
TemplateTagHandler |
TemplateParser.getTagHandlerFor(java.lang.String prefix) |
TemplateTagHandler |
TemplateEngine.getTagHandlerFor(java.lang.String prefix)
Get the tag handler for the prefix.
|
protected int |
TemplateEngine.handleTag(int index,
java.lang.String template)
Handle the tag that starts at
index in the template provided. |
protected java.lang.Object |
TemplateParser.invoke(java.lang.reflect.Method m,
java.lang.Object cmdImplProvider,
java.lang.Object[] params1)
Describe what the method does
|
protected java.lang.Object |
TemplateEngine.invoke(java.lang.reflect.Method m,
java.lang.Object cmdImplProvider,
java.lang.Object[] params1)
Describe what the method does
|
protected void |
TemplateParser.invokeContentMethod(java.lang.String cmd,
java.util.Properties attributes,
java.lang.String template,
int i)
Describe what the method does
|
protected void |
TemplateEngine.invokeContentMethod(java.lang.String cmd,
java.util.Properties attributes,
java.lang.String template,
int i)
Invokes content tag implementation method named
cmd with the specified set of attributes. |
protected java.lang.Object |
TemplateEngine.invokeMethod(java.lang.String cmd,
java.lang.Object[] params1,
java.lang.Object[] params2,
java.lang.String template,
int i)
Invokes content tag implementation method named
cmd . |
java.lang.String |
TemplateEngine.outputOf(java.lang.String template)
Calls
generate() of the specified template content but instead of outputing it to the generated
file, it returns the generated content. |
void |
TemplateEngine.setTagHandlerFor(java.lang.String prefix,
TemplateTagHandler tagHandler)
Sets the TagHandlerFor attribute of the TemplateEngine object
|
void |
TemplateParser.start()
A utility method used for generating the dest_file based on template_file template file.
|
void |
TemplateEngine.start()
A utility method used for generating the dest_file based on template_file template file.
|