public abstract class BaseTemplate extends Object implements Writable
All templates compiled through MarkupTemplateEngine
extend this abstract class,
which provides a number of utility methods to generate markup. An instance of this class can be obtained
after calling Template.make()
or Template.make(java.util.Map)
)} on
a template generated by MarkupTemplateEngine.createTemplate(java.io.Reader)
.
It is advised to use a distinct template instance for each thread (or more simply, each rendered document) for thread safety and avoiding mixing models.
For the application needs, it is possible to provide more helper methods by extending this class and
configuring the base template class using the TemplateConfiguration.setBaseTemplateClass(Class)
method.
Constructor and Description |
---|
BaseTemplate(MarkupTemplateEngine templateEngine,
Map model,
Map<String,String> modelTypes,
TemplateConfiguration configuration) |
Modifier and Type | Method and Description |
---|---|
BaseTemplate |
comment(Object cs)
Renders the supplied object using its
Object.toString() method inside a
comment markup block (<!-- ... |
Map |
getModel() |
Writer |
getOut()
Convenience method to return the current writer instance.
|
void |
includeEscaped(String templatePath)
Includes contents of another file, not as a template but as escaped text.
|
void |
includeGroovy(String templatePath)
Includes another template inside this template.
|
void |
includeUnescaped(String templatePath)
Includes contents of another file, not as a template but as unescaped text.
|
Object |
methodMissing(String tagName,
Object args)
This is the main method responsible for writing a tag and its attributes.
|
void |
newLine()
Adds a new line to the output.
|
BaseTemplate |
pi(Map<?,?> attrs)
Renders processing instructions.
|
abstract Object |
run() |
Object |
tryEscape(Object contents)
Escapes the string representation of the supplied object if it derives from
CharSequence ,
otherwise returns the object itself. |
Writer |
writeTo(Writer out)
Main method used to render a template.
|
BaseTemplate |
xmlDeclaration()
Renders an XML declaration header.
|
BaseTemplate |
yield(Object obj)
Renders the object provided as parameter using its
Object.toString() method,
The contents is rendered after being escaped for XML, enforcing valid XML output. |
BaseTemplate |
yieldUnescaped(Object obj)
Renders the object provided as parameter using its
Object.toString() method,
The contents is rendered as is, unescaped. |
public BaseTemplate(MarkupTemplateEngine templateEngine, Map model, Map<String,String> modelTypes, TemplateConfiguration configuration)
public Map getModel()
public abstract Object run()
public BaseTemplate yieldUnescaped(Object obj) throws IOException
Object.toString()
method,
The contents is rendered as is, unescaped. This means that depending on what the
Object.toString()
method call returns, you might create invalid markup.obj
- the object to be rendered unescapedIOException
public BaseTemplate yield(Object obj) throws IOException
Object.toString()
method,
The contents is rendered after being escaped for XML, enforcing valid XML output.obj
- the object to be renderedIOException
public BaseTemplate comment(Object cs) throws IOException
Object.toString()
method inside a
comment markup block (<!-- ... -->). The object is rendered as is, unescaped.cs
- the object to be rendered inside an XML comment block.IOException
public BaseTemplate xmlDeclaration() throws IOException
template configuration
,
then the encoding is rendered into the declaration.IOException
public BaseTemplate pi(Map<?,?> attrs) throws IOException
Renders processing instructions. The supplied map contains all elements to be rendered as processing instructions. The key is the name of the element, the value is either a map of attributes, or an object to be rendered directly. For example:
pi("xml-stylesheet":[href:"mystyle.css", type:"text/css"])
will be rendered as:
<?xml-stylesheet href='mystyle.css' type='text/css'?>
attrs
- IOException
public Object methodMissing(String tagName, Object args) throws IOException
or a combination of (attributes,string), (attributes,closure)
tagName
- the name of the tagargs
- tag generation arguments.IOException
public void includeGroovy(String templatePath) throws IOException, ClassNotFoundException
templatePath
- the path to the included resource.IOException
ClassNotFoundException
public void includeEscaped(String templatePath) throws IOException
templatePath
- IOException
public void includeUnescaped(String templatePath) throws IOException
templatePath
- IOException
public Object tryEscape(Object contents)
CharSequence
,
otherwise returns the object itself.contents
- an object to be escaped for XMLpublic Writer getOut()
public void newLine() throws IOException
TemplateConfiguration.setNewLineString(String)
IOException
public Writer writeTo(Writer out) throws IOException
writeTo
in interface Writable
out
- the Writer to which this Writable should output its data.IOException