Uses of Interface
org.norther.tammi.spray.engine.context.TemplateContext

Packages that use TemplateContext
org.norther.tammi.spray.engine   
org.norther.tammi.spray.engine.context   
org.norther.tammi.spray.engine.tool   
org.norther.tammi.spray.freemarker   
org.norther.tammi.spray.servlet   
org.norther.tammi.spray.template.flow   
org.norther.tammi.spray.template.task   
org.norther.tammi.spray.template.tool   
org.norther.tammi.spray.velocity   
 

Uses of TemplateContext in org.norther.tammi.spray.engine
 

Classes in org.norther.tammi.spray.engine that implement TemplateContext
static class DefaultContextToolFilter.InternalTemplateContext
          An internal implementation of TemplateContext.
 

Methods in org.norther.tammi.spray.engine that return TemplateContext
 TemplateContext DefaultContextToolFilter.getTemplateContext(ServletRequest request, ServletResponse response, FilterChain chain)
           
 TemplateContext ContextToolFilter.getTemplateContext(ServletRequest request, ServletResponse response, FilterChain chain)
          Gets a template context loaded with context tools for the specified request.
 

Methods in org.norther.tammi.spray.engine with parameters of type TemplateContext
 CharSequence TemplateEngine.evaluate(CharSequence content, TemplateContext context, String template)
          Evaluates the given run-time content.
 CharSequence AbstractTemplateEngine.evaluate(CharSequence content, TemplateContext context, String template)
           
 CharSequence TemplateEngine.evaluate(TemplateContext context, String template)
          Evaluates the specified template.
 CharSequence AbstractTemplateEngine.evaluate(TemplateContext context, String template)
           
 CharSequence TemplateEngine.evaluate(TemplateContext context, String template, String encoding)
          Evaluates the specified template using the given encoding.
 CharSequence AbstractTemplateEngine.evaluate(TemplateContext context, String template, String encoding)
           
 void TemplateEngine.execute(CharSequence content, TemplateContext context, String template, Writer writer)
          Executes the given run-time content.
 void AbstractTemplateEngine.execute(CharSequence content, TemplateContext context, String template, Writer writer)
           
 void TemplateEngine.execute(TemplateContext context, String template, String encoding, Writer writer)
          Executes the specified template using the given encoding.
 void AbstractTemplateEngine.execute(TemplateContext context, String template, String encoding, Writer writer)
           
 void TemplateEngine.execute(TemplateContext context, String template, Writer writer)
          Executes the specified template.
 void AbstractTemplateEngine.execute(TemplateContext context, String template, Writer writer)
           
protected abstract  void AbstractTemplateEngine.process(CharSequence content, TemplateContext context, String template, String encoding, Writer writer)
          Subclasses implement this method to process the specified run-time content or target template.
 

Constructors in org.norther.tammi.spray.engine with parameters of type TemplateContext
DefaultContextToolFilter.InternalTemplateContext(TemplateContext ctx)
          Constructs a new context with a parent.
 

Uses of TemplateContext in org.norther.tammi.spray.engine.context
 

Classes in org.norther.tammi.spray.engine.context that implement TemplateContext
 class DefaultTemplateContext
          A default implementation of TemplateContext.
 

Methods in org.norther.tammi.spray.engine.context that return TemplateContext
 TemplateContext ContextBindingEvent.getContext()
          Gets the target context.
 TemplateContext TemplateContext.getParent(int index)
          Gets the indexed parent from the context.
 TemplateContext DefaultTemplateContext.getParent(int index)
           
 TemplateContext TemplateContext.removeParent(int index)
          Removes an indexed parent context.
 TemplateContext DefaultTemplateContext.removeParent(int index)
           
 TemplateContext TemplateContext.setParent(int index, TemplateContext context)
          Sets a parent context to a specied index.
 TemplateContext DefaultTemplateContext.setParent(int index, TemplateContext context)
           
 

Methods in org.norther.tammi.spray.engine.context that return types with arguments of type TemplateContext
 List<TemplateContext> TemplateContext.getParents()
          Gets a read-only list of parents.
 List<TemplateContext> DefaultTemplateContext.getParents()
           
 

Methods in org.norther.tammi.spray.engine.context with parameters of type TemplateContext
 boolean TemplateContext.addParent(int index, TemplateContext context)
          Adds a parent context to a specied index.
 boolean DefaultTemplateContext.addParent(int index, TemplateContext context)
           
 boolean TemplateContext.addParent(TemplateContext context)
          Adds a parent context.
 boolean DefaultTemplateContext.addParent(TemplateContext context)
           
 void DefaultTemplateContext.recycle(TemplateContext ctx)
          Recycles a context with a parent.
 boolean TemplateContext.removeParent(TemplateContext context)
          Removes a parent context.
 boolean DefaultTemplateContext.removeParent(TemplateContext context)
           
 TemplateContext TemplateContext.setParent(int index, TemplateContext context)
          Sets a parent context to a specied index.
 TemplateContext DefaultTemplateContext.setParent(int index, TemplateContext context)
           
 

Constructors in org.norther.tammi.spray.engine.context with parameters of type TemplateContext
ContextBindingEvent(TemplateContext context, HttpFilterChain chain, String name)
          Constructs a new event with a filter chain.
ContextBindingEvent(TemplateContext context, String name)
          Constructs a new event.
DefaultTemplateContext(TemplateContext ctx)
          Constructs a new context with a parent.
 

Uses of TemplateContext in org.norther.tammi.spray.engine.tool
 

Methods in org.norther.tammi.spray.engine.tool that return TemplateContext
protected  TemplateContext GlobalTool.getContext()
          Gets the target context.
protected  TemplateContext FormatTool.getContext()
          Gets the target context.
protected  TemplateContext BeanTool.getContext()
          Gets the target context.
 

Uses of TemplateContext in org.norther.tammi.spray.freemarker
 

Methods in org.norther.tammi.spray.freemarker with parameters of type TemplateContext
protected  void DefaultFreemarkerEngine.process(CharSequence content, TemplateContext context, String template, String encoding, Writer writer)
           
 

Uses of TemplateContext in org.norther.tammi.spray.servlet
 

Methods in org.norther.tammi.spray.servlet with parameters of type TemplateContext
protected  void DefaultJSPEngine.dispatch(String path, TemplateContext context, ServletRequest request, ServletResponse response, Writer writer)
           
protected  void DefaultForwardEngine.dispatch(String path, TemplateContext context, ServletRequest request, ServletResponse response, Writer writer)
          Dispatches the specified template path.
protected  void DefaultForwardEngine.process(CharSequence content, TemplateContext context, String template, String encoding, Writer writer)
           
 

Uses of TemplateContext in org.norther.tammi.spray.template.flow
 

Methods in org.norther.tammi.spray.template.flow that return TemplateContext
 TemplateContext StepFlowContext.getTemplateContext(ServletRequest request, ServletResponse response, FilterChain chain)
          Gets the template context of the specified request.
 TemplateContext DefaultStepFlowContext.getTemplateContext(ServletRequest request, ServletResponse response, FilterChain chain)
           
 

Uses of TemplateContext in org.norther.tammi.spray.template.task
 

Methods in org.norther.tammi.spray.template.task with parameters of type TemplateContext
 Task.Control TemplateAction.submit(ServletRequest request, ServletResponse response, FilterChain chain, TemplateContext context)
          Implements the default submit method if any of the specific ones doesn't match.
 

Uses of TemplateContext in org.norther.tammi.spray.template.tool
 

Methods in org.norther.tammi.spray.template.tool that return TemplateContext
 TemplateContext FlowTool.getTemplateContext(ServletRequest request, ServletResponse response, FilterChain chain)
           
 

Uses of TemplateContext in org.norther.tammi.spray.velocity
 

Methods in org.norther.tammi.spray.velocity with parameters of type TemplateContext
protected  void DefaultVelocityEngine.process(CharSequence content, TemplateContext context, String template, String encoding, Writer writer)
           
 



Copyright © 2004 The Norther Organization. All rights reserved.