| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of MethodInvocationException in org.apache.velocity | 
|---|
| Methods in org.apache.velocity that throw MethodInvocationException | |
|---|---|
|  void | Template.merge(Context context,
      Writer writer)The AST node structure is merged with the context to produce the final output. | 
| Uses of MethodInvocationException in org.apache.velocity.app | 
|---|
| Methods in org.apache.velocity.app that throw MethodInvocationException | |
|---|---|
| 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,
         InputStream instream)Deprecated. Use VelocityEngine.evaluate( Context context, Writer writer,
      String logTag, Reader reader ) | 
| 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 writer,
         String logTag,
         Reader reader)Renders the input reader 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. | 
|  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.mergeTemplate(String templateName,
              Context context,
              Writer writer)Deprecated. Use Velocity.mergeTemplate( String templateName, String encoding,
                Context context, Writer writer ) | 
|  boolean | VelocityEngine.mergeTemplate(String templateName,
              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 | 
|  boolean | VelocityEngine.mergeTemplate(String templateName,
              String encoding,
              Context context,
              Writer writer)merges a template and puts the rendered stream into the writer | 
| Uses of MethodInvocationException in org.apache.velocity.context | 
|---|
| Methods in org.apache.velocity.context that throw MethodInvocationException | |
|---|---|
|  void | VMContext.addVMProxyArg(VMProxyArg vmpa)Used to put VMProxyArgs into this context. | 
| Uses of MethodInvocationException in org.apache.velocity.runtime.directive | 
|---|
| Methods in org.apache.velocity.runtime.directive that throw MethodInvocationException | |
|---|---|
|  Object | Foreach.NullHolderContext.get(String key)Get an object from the context, or null if the key is equal to the loop variable | 
|  Object | VMProxyArg.getObject(InternalContextAdapter context)returns the value of the reference. | 
|  boolean | Foreach.render(InternalContextAdapter context,
       Writer writer,
       Node node)renders the #foreach() block | 
|  boolean | Include.render(InternalContextAdapter context,
       Writer writer,
       Node node)iterates through the argument list and renders every argument that is appropriate. | 
|  boolean | Parse.render(InternalContextAdapter context,
       Writer writer,
       Node node)iterates through the argument list and renders every argument that is appropriate. | 
| abstract  boolean | Directive.render(InternalContextAdapter context,
       Writer writer,
       Node node)How this directive is to be rendered | 
|  boolean | VelocimacroProxy.render(InternalContextAdapter context,
       Writer writer,
       Node node)Renders the macro using the context | 
| Uses of MethodInvocationException in org.apache.velocity.runtime.parser.node | 
|---|
| Methods in org.apache.velocity.runtime.parser.node that throw MethodInvocationException | |
|---|---|
|  boolean | ASTAndNode.evaluate(InternalContextAdapter context)logical and : null && right = false left && null = false null && null = false | 
|  boolean | ASTElseIfStatement.evaluate(InternalContextAdapter context)An ASTElseStatement is true if the expression it contains evaluates to true. | 
|  boolean | ASTNENode.evaluate(InternalContextAdapter context) | 
|  boolean | ASTNotNode.evaluate(InternalContextAdapter context) | 
|  boolean | ASTGTNode.evaluate(InternalContextAdapter context) | 
|  boolean | ASTGENode.evaluate(InternalContextAdapter context) | 
|  boolean | ASTExpression.evaluate(InternalContextAdapter context) | 
|  boolean | Node.evaluate(InternalContextAdapter context) | 
|  boolean | ASTOrNode.evaluate(InternalContextAdapter context)the logical or : the rule : left || null -> left null || right -> right null || null -> false left || right -> left || right | 
|  boolean | ASTLENode.evaluate(InternalContextAdapter context) | 
|  boolean | ASTEQNode.evaluate(InternalContextAdapter context)Calculates the value of the logical expression arg1 == arg2 All class types are supported. | 
|  boolean | ASTReference.evaluate(InternalContextAdapter context)Computes boolean value of this reference Returns the actual value of reference return type boolean, and 'true' if value is not null | 
|  boolean | ASTLTNode.evaluate(InternalContextAdapter context) | 
|  boolean | SimpleNode.evaluate(InternalContextAdapter context) | 
|  Object | ASTMethod.execute(Object o,
        InternalContextAdapter context)invokes the method. | 
|  Object | ASTIdentifier.execute(Object o,
        InternalContextAdapter context) | 
|  Object | Node.execute(Object o,
        InternalContextAdapter context) | 
|  Object | ASTReference.execute(Object o,
        InternalContextAdapter context)gets an Object that 'is' the value of the reference | 
|  Object | SimpleNode.execute(Object o,
        InternalContextAdapter context) | 
|  Object | ASTReference.getVariableValue(Context context,
                 String variable) | 
| static String | NodeUtils.interpolate(String argStr,
            Context vars)Utility method to interpolate context variables into string literals. | 
|  boolean | ASTElseIfStatement.render(InternalContextAdapter context,
       Writer writer) | 
|  boolean | ASTStop.render(InternalContextAdapter context,
       Writer writer)Do not output anything, just shut off the rendering. | 
|  boolean | ASTBlock.render(InternalContextAdapter context,
       Writer writer) | 
|  boolean | ASTComment.render(InternalContextAdapter context,
       Writer writer) | 
|  boolean | ASTDirective.render(InternalContextAdapter context,
       Writer writer) | 
|  boolean | ASTSetDirective.render(InternalContextAdapter context,
       Writer writer)puts the value of the RHS into the context under the key of the LHS | 
|  boolean | Node.render(InternalContextAdapter context,
       Writer writer) | 
|  boolean | ASTIfStatement.render(InternalContextAdapter context,
       Writer writer) | 
|  boolean | ASTReference.render(InternalContextAdapter context,
       Writer writer)gets the value of the reference and outputs it to the writer. | 
|  boolean | SimpleNode.render(InternalContextAdapter context,
       Writer writer) | 
|  boolean | ASTReference.setValue(InternalContextAdapter context,
         Object value)Sets the value of a complex reference (something like $foo.bar) Currently used by ASTSetReference() | 
|  Object | ASTAndNode.value(InternalContextAdapter context)Returns the value of the expression. | 
|  Object | ASTAddNode.value(InternalContextAdapter context)computes the sum of the two nodes. | 
|  Object | ASTDivNode.value(InternalContextAdapter context)computes the result of the division. | 
|  Object | ASTMulNode.value(InternalContextAdapter context)computes the product of the two args. | 
|  Object | ASTNENode.value(InternalContextAdapter context) | 
|  Object | ASTNotNode.value(InternalContextAdapter context) | 
|  Object | ASTGTNode.value(InternalContextAdapter context) | 
|  Object | ASTGENode.value(InternalContextAdapter context) | 
|  Object | ASTExpression.value(InternalContextAdapter context) | 
|  Object | ASTModNode.value(InternalContextAdapter context) | 
|  Object | Node.value(InternalContextAdapter context) | 
|  Object | ASTOrNode.value(InternalContextAdapter context)Returns the value of the expression. | 
|  Object | ASTLENode.value(InternalContextAdapter context) | 
|  Object | ASTObjectArray.value(InternalContextAdapter context) | 
|  Object | ASTEQNode.value(InternalContextAdapter context) | 
|  Object | ASTSubtractNode.value(InternalContextAdapter context)computes the value of the subtraction. | 
|  Object | ASTReference.value(InternalContextAdapter context) | 
|  Object | ASTLTNode.value(InternalContextAdapter context) | 
|  Object | ASTIntegerRange.value(InternalContextAdapter context)does the real work. | 
|  Object | ASTMap.value(InternalContextAdapter context) | 
|  Object | SimpleNode.value(InternalContextAdapter context) | 
| Uses of MethodInvocationException in org.apache.velocity.servlet | 
|---|
| Methods in org.apache.velocity.servlet that throw MethodInvocationException | |
|---|---|
| protected  void | VelocityServlet.mergeTemplate(Template template,
              Context context,
              HttpServletResponse response)Deprecated. merges the template with the context. | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||