Uses of Class
org.mvel2.templates.res.Node

Packages that use Node
org.mvel2.templates   
org.mvel2.templates.res   
org.mvel2.templates.util   
 

Uses of Node in org.mvel2.templates
 

Methods in org.mvel2.templates that return Node
 Node TemplateCompiler.compileFrom(Node root, ExecutionStack stack)
           
 Node CompiledTemplate.getRoot()
           
 Node TemplateRuntime.getRootNode()
           
 Node TemplateCompiler.markTextNode(Node n)
           
 

Methods in org.mvel2.templates with parameters of type Node
 Node TemplateCompiler.compileFrom(Node root, ExecutionStack stack)
           
static Object TemplateRuntime.execute(Node root, char[] template, StringAppender appender, Object context, VariableResolverFactory factory, TemplateRegistry registry)
           
static Object TemplateRuntime.execute(Node root, char[] template, TemplateOutputStream appender, Object context, VariableResolverFactory factory, TemplateRegistry registry)
           
 Node TemplateCompiler.markTextNode(Node n)
           
 void CompiledTemplate.setRoot(Node root)
           
 void TemplateRuntime.setRootNode(Node rootNode)
           
 

Method parameters in org.mvel2.templates with type arguments of type Node
static CompiledTemplate TemplateCompiler.compileTemplate(char[] template, Map<String,Class<? extends Node>> customNodes)
           
static CompiledTemplate TemplateCompiler.compileTemplate(CharSequence template, Map<String,Class<? extends Node>> customNodes)
           
static CompiledTemplate TemplateCompiler.compileTemplate(File file, Map<String,Class<? extends Node>> customNodes)
           
static CompiledTemplate TemplateCompiler.compileTemplate(InputStream stream, Map<String,Class<? extends Node>> customNodes)
           
static CompiledTemplate TemplateCompiler.compileTemplate(String template, Map<String,Class<? extends Node>> customNodes)
           
 

Constructors in org.mvel2.templates with parameters of type Node
CompiledTemplate(char[] template, Node root)
           
TemplateRuntime(char[] template, TemplateRegistry namedTemplateRegistry, Node rootNode)
           
 

Constructor parameters in org.mvel2.templates with type arguments of type Node
TemplateCompiler(char[] template, Map<String,Class<? extends Node>> customNodes)
           
TemplateCompiler(char[] template, Map<String,Class<? extends Node>> customNodes, boolean codeCache)
           
TemplateCompiler(CharSequence sequence, Map<String,Class<? extends Node>> customNodes)
           
TemplateCompiler(CharSequence sequence, Map<String,Class<? extends Node>> customNodes, boolean codeCache)
           
TemplateCompiler(String template, Map<String,Class<? extends Node>> customNodes)
           
TemplateCompiler(String template, Map<String,Class<? extends Node>> customNodes, boolean codeCache)
           
 

Uses of Node in org.mvel2.templates.res
 

Subclasses of Node in org.mvel2.templates.res
 class CodeNode
           
 class CommentNode
           
 class CompiledCodeNode
           
 class CompiledDeclareNode
           
 class CompiledEvalNode
           
 class CompiledExpressionNode
           
 class CompiledForEachNode
           
 class CompiledIfNode
           
 class CompiledIncludeNode
           
 class CompiledNamedIncludeNode
           
 class CompiledTerminalExpressionNode
           
 class DeclareNode
           
 class EndNode
           
 class EvalNode
           
 class ExpressionNode
           
 class ForEachNode
           
 class IfNode
           
 class IncludeNode
           
 class NamedIncludeNode
           
 class TerminalExpressionNode
           
 class TerminalNode
           
 class TextNode
           
 

Fields in org.mvel2.templates.res declared as Node
protected  Node IfNode.elseNode
           
 Node CompiledForEachNode.nestedNode
           
 Node ForEachNode.nestedNode
           
 Node Node.next
           
protected  Node Node.terminus
           
protected  Node IfNode.trueNode
           
 

Methods in org.mvel2.templates.res that return Node
 Node IfNode.getElseNode()
           
 Node CompiledForEachNode.getNestedNode()
           
 Node ForEachNode.getNestedNode()
           
 Node Node.getNext()
           
 Node Node.getTerminus()
           
 Node IfNode.getTrueNode()
           
 Node Node.setNext(Node next)
           
 

Methods in org.mvel2.templates.res with parameters of type Node
 boolean TerminalNode.demarcate(Node terminatingNode, char[] template)
           
 boolean CommentNode.demarcate(Node terminatingNode, char[] template)
           
 boolean EvalNode.demarcate(Node terminatingNode, char[] template)
           
 boolean EndNode.demarcate(Node terminatingNode, char[] template)
           
 boolean NamedIncludeNode.demarcate(Node terminatingNode, char[] template)
           
 boolean CompiledNamedIncludeNode.demarcate(Node terminatingNode, char[] template)
           
 boolean CompiledCodeNode.demarcate(Node terminatingNode, char[] template)
           
 boolean CodeNode.demarcate(Node terminatingNode, char[] template)
           
 boolean CompiledForEachNode.demarcate(Node terminatingnode, char[] template)
           
 boolean ExpressionNode.demarcate(Node terminatingNode, char[] template)
           
 boolean TextNode.demarcate(Node terminatingNode, char[] template)
           
 boolean CompiledIncludeNode.demarcate(Node terminatingNode, char[] template)
           
 boolean IncludeNode.demarcate(Node terminatingNode, char[] template)
           
 boolean CompiledTerminalExpressionNode.demarcate(Node terminatingNode, char[] template)
           
abstract  boolean Node.demarcate(Node terminatingNode, char[] template)
           
 boolean CompiledEvalNode.demarcate(Node terminatingNode, char[] template)
           
 boolean IfNode.demarcate(Node terminatingNode, char[] template)
           
 boolean CompiledDeclareNode.demarcate(Node terminatingNode, char[] template)
           
 boolean ForEachNode.demarcate(Node terminatingnode, char[] template)
           
 boolean TerminalExpressionNode.demarcate(Node terminatingNode, char[] template)
           
 boolean DeclareNode.demarcate(Node terminatingNode, char[] template)
           
 void CompiledForEachNode.setNestedNode(Node nestedNode)
           
 void ForEachNode.setNestedNode(Node nestedNode)
           
 Node Node.setNext(Node next)
           
 void Node.setTerminus(Node terminus)
           
 

Constructors in org.mvel2.templates.res with parameters of type Node
CodeNode(int begin, String name, char[] template, int start, int end, Node next)
           
CommentNode(int begin, String name, char[] template, int start, int end, Node next)
           
CompiledCodeNode(int begin, String name, char[] template, int start, int end, Node next)
           
CompiledEvalNode(int begin, String name, char[] template, int start, int end, Node next)
           
CompiledExpressionNode(int begin, String name, char[] template, int start, int end, Node next)
           
CompiledTerminalExpressionNode(int begin, String name, char[] template, int start, int end, Node next)
           
CompiledTerminalExpressionNode(Node node)
           
EvalNode(int begin, String name, char[] template, int start, int end, Node next)
           
ExpressionNode(int begin, String name, char[] template, int start, int end, Node next)
           
Node(int begin, String name, char[] template, int start, int end, Node next)
           
TerminalExpressionNode(int begin, String name, char[] template, int start, int end, Node next)
           
TerminalExpressionNode(Node node)
           
 

Uses of Node in org.mvel2.templates.util
 

Methods in org.mvel2.templates.util that return Node
static Node TemplateTools.getLastNode(Node node)
           
 

Methods in org.mvel2.templates.util with parameters of type Node
static Node TemplateTools.getLastNode(Node node)
           
 



Copyright © 2011. All Rights Reserved.