
org.apache.tiles.velocity.template.GetAsStringDirective Maven / Gradle / Ivy
The newest version!
/*
* This file was automatically generated by Apache Tiles Autotag.
*/
package org.apache.tiles.velocity.template;
import java.io.IOException;
import java.io.Writer;
import org.apache.tiles.autotag.core.runtime.ModelBody;
import org.apache.tiles.autotag.core.runtime.AutotagRuntime;
import org.apache.velocity.context.InternalContextAdapter;
import org.apache.velocity.runtime.directive.Directive;
import org.apache.velocity.runtime.parser.node.Node;
/**
*
* Render the value of the specified template attribute to the current
* Writer
*
*
*
* Retrieve the value of the specified template attribute property, and render
* it to the current Writer as a String. The usual toString() conversions is
* applied on found value.
*
*/
public class GetAsStringDirective extends Directive {
/**
* The template model.
*/
private org.apache.tiles.template.GetAsStringModel model = new org.apache.tiles.template.GetAsStringModel();
/** {@inheritDoc} */
@Override
public String getName() {
return "tiles_getAsString";
}
/** {@inheritDoc} */
@Override
public int getType() {
return BLOCK;
}
/** {@inheritDoc} */
@Override
public boolean render(InternalContextAdapter context, Writer writer, Node node)
throws IOException {
AutotagRuntime runtime = new org.apache.tiles.request.velocity.autotag.VelocityAutotagRuntime();
if (runtime instanceof Directive) {
((Directive) runtime).render(context, writer, node);
}
org.apache.tiles.request.Request request = runtime.createRequest();
ModelBody modelBody = runtime.createModelBody();
model.execute(
runtime.getParameter("ignore", java.lang.Boolean.class, false),
runtime.getParameter("preparer", java.lang.String.class, null),
runtime.getParameter("role", java.lang.String.class, null),
runtime.getParameter("defaultValue", java.lang.Object.class, null),
runtime.getParameter("defaultValueRole", java.lang.String.class, null),
runtime.getParameter("defaultValueType", java.lang.String.class, null),
runtime.getParameter("name", java.lang.String.class, null),
runtime.getParameter("value", org.apache.tiles.Attribute.class, null),
request, modelBody
);
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy