| 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of ResourceNotFoundException in org.apache.velocity | 
|---|
| Methods in org.apache.velocity that throw ResourceNotFoundException | |
|---|---|
 void | 
Template.merge(Context context,
      Writer writer)
The AST node structure is merged with the context to produce the final output.  | 
 void | 
Template.merge(Context context,
      Writer writer,
      List macroLibraries)
The AST node structure is merged with the context to produce the final output.  | 
 boolean | 
Template.process()
gets the named resource as a stream, parses and inits  | 
| Uses of ResourceNotFoundException in org.apache.velocity.app | 
|---|
| Methods in org.apache.velocity.app that throw ResourceNotFoundException | |
|---|---|
 boolean | 
VelocityEngine.evaluate(Context context,
         Writer writer,
         String logTag,
         InputStream instream)
Deprecated. Use VelocityEngine.evaluate( Context context, Writer writer,
      String logTag, Reader reader ) | 
static boolean | 
Velocity.evaluate(Context context,
         Writer writer,
         String logTag,
         InputStream instream)
Deprecated. Use Velocity.evaluate( Context context, Writer writer,
      String logTag, Reader reader ) | 
 boolean | 
VelocityEngine.evaluate(Context context,
         Writer writer,
         String logTag,
         Reader reader)
Renders the input reader using the context into the output writer.  | 
static boolean | 
Velocity.evaluate(Context context,
         Writer writer,
         String logTag,
         Reader reader)
Renders the input reader using the context into the output writer.  | 
 boolean | 
VelocityEngine.evaluate(Context context,
         Writer out,
         String logTag,
         String instring)
renders the input string using the context into the output writer.  | 
static boolean | 
Velocity.evaluate(Context context,
         Writer out,
         String logTag,
         String instring)
renders the input string using the context into the output writer.  | 
 Template | 
VelocityEngine.getTemplate(String name)
Returns a Template from the Velocity
  resource management system. | 
static Template | 
Velocity.getTemplate(String name)
Returns a Template from the Velocity
  resource management system. | 
 Template | 
VelocityEngine.getTemplate(String name,
            String encoding)
Returns a Template from the Velocity
  resource management system. | 
static Template | 
Velocity.getTemplate(String name,
            String encoding)
Returns a Template from the Velocity
  resource management system. | 
 boolean | 
VelocityEngine.mergeTemplate(String templateName,
              Context context,
              Writer writer)
Deprecated. Use VelocityEngine.mergeTemplate( String templateName, String encoding,
                Context context, Writer writer ) | 
static boolean | 
Velocity.mergeTemplate(String templateName,
              Context context,
              Writer writer)
Deprecated. Use Velocity.mergeTemplate( String templateName, String encoding,
                Context context, Writer writer ) | 
 boolean | 
VelocityEngine.mergeTemplate(String templateName,
              String encoding,
              Context context,
              Writer writer)
merges a template and puts the rendered stream into the writer  | 
static boolean | 
Velocity.mergeTemplate(String templateName,
              String encoding,
              Context context,
              Writer writer)
merges a template and puts the rendered stream into the writer  | 
| Uses of ResourceNotFoundException in org.apache.velocity.runtime | 
|---|
| Methods in org.apache.velocity.runtime that throw ResourceNotFoundException | |
|---|---|
static ContentResource | 
RuntimeSingleton.getContent(String name)
Returns a static content resource from the resource manager.  | 
 ContentResource | 
RuntimeServices.getContent(String name)
Returns a static content resource from the resource manager.  | 
 ContentResource | 
RuntimeInstance.getContent(String name)
Returns a static content resource from the resource manager.  | 
static ContentResource | 
Runtime.getContent(String name)
Deprecated. Returns a static content resource from the resource manager.  | 
static ContentResource | 
RuntimeSingleton.getContent(String name,
           String encoding)
Returns a static content resource from the resource manager.  | 
 ContentResource | 
RuntimeServices.getContent(String name,
           String encoding)
Returns a static content resource from the resource manager.  | 
 ContentResource | 
RuntimeInstance.getContent(String name,
           String encoding)
Returns a static content resource from the resource manager.  | 
static ContentResource | 
Runtime.getContent(String name,
           String encoding)
Deprecated. Returns a static content resource from the resource manager.  | 
static Template | 
RuntimeSingleton.getTemplate(String name)
Returns a Template from the resource manager. | 
 Template | 
RuntimeServices.getTemplate(String name)
Returns a Template from the resource manager. | 
 Template | 
RuntimeInstance.getTemplate(String name)
Returns a Template from the resource manager. | 
static Template | 
Runtime.getTemplate(String name)
Deprecated. Returns a Template from the resource manager. | 
static Template | 
RuntimeSingleton.getTemplate(String name,
            String encoding)
Returns a Template from the resource manager | 
 Template | 
RuntimeServices.getTemplate(String name,
            String encoding)
Returns a Template from the resource manager | 
 Template | 
RuntimeInstance.getTemplate(String name,
            String encoding)
Returns a Template from the resource manager | 
static Template | 
Runtime.getTemplate(String name,
            String encoding)
Deprecated. Returns a Template from the resource manager | 
 boolean | 
Renderable.render(InternalContextAdapter context,
       Writer writer)
 | 
| Uses of ResourceNotFoundException in org.apache.velocity.runtime.directive | 
|---|
| Methods in org.apache.velocity.runtime.directive that throw ResourceNotFoundException | |
|---|---|
 boolean | 
RuntimeMacro.render(InternalContextAdapter context,
       Writer writer,
       Node node)
Velocimacro implementation is not known at the init time.  | 
 boolean | 
Parse.render(InternalContextAdapter context,
       Writer writer,
       Node node)
iterates through the argument list and renders every argument that is appropriate.  | 
 boolean | 
Include.render(InternalContextAdapter context,
       Writer writer,
       Node node)
iterates through the argument list and renders every argument that is appropriate.  | 
 boolean | 
Foreach.render(InternalContextAdapter context,
       Writer writer,
       Node node)
renders the #foreach() block  | 
 boolean | 
Evaluate.render(InternalContextAdapter context,
       Writer writer,
       Node node)
Evaluate the argument, convert to a String, and evaluate again (with the same context).  | 
abstract  boolean | 
Directive.render(InternalContextAdapter context,
       Writer writer,
       Node node)
How this directive is to be rendered  | 
 boolean | 
Break.render(InternalContextAdapter context,
       Writer writer,
       Node node)
Break directive does not actually do any rendering.  | 
| Uses of ResourceNotFoundException in org.apache.velocity.runtime.parser.node | 
|---|
| Methods in org.apache.velocity.runtime.parser.node that throw ResourceNotFoundException | |
|---|---|
 boolean | 
SimpleNode.render(InternalContextAdapter context,
       Writer writer)
 | 
 boolean | 
Node.render(InternalContextAdapter context,
       Writer writer)
 | 
 boolean | 
ASTStop.render(InternalContextAdapter context,
       Writer writer)
Do not output anything, just shut off the rendering.  | 
 boolean | 
ASTIfStatement.render(InternalContextAdapter context,
       Writer writer)
 | 
 boolean | 
ASTElseIfStatement.render(InternalContextAdapter context,
       Writer writer)
 | 
 boolean | 
ASTDirective.render(InternalContextAdapter context,
       Writer writer)
 | 
 boolean | 
ASTComment.render(InternalContextAdapter context,
       Writer writer)
 | 
 boolean | 
ASTBlock.render(InternalContextAdapter context,
       Writer writer)
 | 
| Uses of ResourceNotFoundException in org.apache.velocity.runtime.resource | 
|---|
| Methods in org.apache.velocity.runtime.resource that throw ResourceNotFoundException | |
|---|---|
 Resource | 
ResourceManagerImpl.getResource(String resourceName,
            int resourceType)
Deprecated. Use ResourceManagerImpl.getResource(String resourceName, int resourceType, String encoding ) | 
 Resource | 
ResourceManagerImpl.getResource(String resourceName,
            int resourceType,
            String encoding)
Gets the named resource.  | 
 Resource | 
ResourceManager.getResource(String resourceName,
            int resourceType,
            String encoding)
Gets the named resource.  | 
protected  Resource | 
ResourceManagerImpl.loadResource(String resourceName,
             int resourceType,
             String encoding)
Loads a resource from the current set of resource loaders.  | 
abstract  boolean | 
Resource.process()
Perform any subsequent processing that might need to be done by a resource.  | 
 boolean | 
ContentResource.process()
Pull in static content and store it.  | 
protected  Resource | 
ResourceManagerImpl.refreshResource(Resource resource,
                String encoding)
Takes an existing resource, and 'refreshes' it.  | 
| Uses of ResourceNotFoundException in org.apache.velocity.runtime.resource.loader | 
|---|
| Methods in org.apache.velocity.runtime.resource.loader that throw ResourceNotFoundException | |
|---|---|
 InputStream | 
JarHolder.getResource(String theentry)
 | 
 InputStream | 
URLResourceLoader.getResourceStream(String name)
Get an InputStream so that the Runtime can build a template with it.  | 
 InputStream | 
StringResourceLoader.getResourceStream(String name)
Get an InputStream so that the Runtime can build a template with it.  | 
abstract  InputStream | 
ResourceLoader.getResourceStream(String source)
Get the InputStream that the Runtime will parse to create a template.  | 
 InputStream | 
JarResourceLoader.getResourceStream(String source)
Get an InputStream so that the Runtime can build a template with it.  | 
 InputStream | 
FileResourceLoader.getResourceStream(String templateName)
Get an InputStream so that the Runtime can build a template with it.  | 
 InputStream | 
DataSourceResourceLoader.getResourceStream(String name)
Get an InputStream so that the Runtime can build a template with it.  | 
 InputStream | 
ClasspathResourceLoader.getResourceStream(String name)
Get an InputStream so that the Runtime can build a template with it.  | 
| Uses of ResourceNotFoundException in org.apache.velocity.servlet | 
|---|
| Methods in org.apache.velocity.servlet that throw ResourceNotFoundException | |
|---|---|
 Template | 
VelocityServlet.getTemplate(String name)
Deprecated. Retrieves the requested template.  | 
 Template | 
VelocityServlet.getTemplate(String name,
            String encoding)
Deprecated. Retrieves the requested template with the specified character encoding.  | 
protected  void | 
VelocityServlet.mergeTemplate(Template template,
              Context context,
              HttpServletResponse response)
Deprecated. merges the template with the context.  | 
  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||