Package de.neuland.jade4j.parser.node
Class ConditionalNode
- java.lang.Object
-
- de.neuland.jade4j.parser.node.Node
-
- de.neuland.jade4j.parser.node.ConditionalNode
-
-
Constructor Summary
Constructors Constructor Description ConditionalNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConditionalNodeclone()voidexecute(IndentWriter writer, JadeModel model, JadeTemplate template)List<IfConditionNode>getConditions()voidsetConditions(List<IfConditionNode> conditions)-
Methods inherited from class de.neuland.jade4j.parser.node.Node
getBlock, getFileName, getLineNumber, getName, getNodes, getValue, hasBlock, hasNodes, pollNode, push, setBlock, setFileName, setLineNumber, setName, setNodes, setValue
-
-
-
-
Method Detail
-
execute
public void execute(IndentWriter writer, JadeModel model, JadeTemplate template) throws JadeCompilerException
- Specified by:
executein classNode- Throws:
JadeCompilerException
-
getConditions
public List<IfConditionNode> getConditions()
-
setConditions
public void setConditions(List<IfConditionNode> conditions)
-
clone
public ConditionalNode clone() throws CloneNotSupportedException
- Overrides:
clonein classNode- Throws:
CloneNotSupportedException
-
-