Package de.neuland.pug4j.parser.node
Class CallNode
- java.lang.Object
-
- de.neuland.pug4j.parser.node.Node
-
- de.neuland.pug4j.parser.node.AttrsNode
-
- de.neuland.pug4j.parser.node.CallNode
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>arguments-
Fields inherited from class de.neuland.pug4j.parser.node.AttrsNode
attributeBlocks, attributeNames, attributes, codeNode, selfClosing
-
-
Constructor Summary
Constructors Constructor Description CallNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexecute(IndentWriter writer, PugModel model, PugTemplate template)List<String>getArguments()booleanisCall()voidsetArguments(String arguments)voidsetArguments(List<String> arguments)voidsetCall(boolean call)-
Methods inherited from class de.neuland.pug4j.parser.node.AttrsNode
addAttributes, attrs, clone, getAttribute, getAttributes, getCodeNode, hasCodeNode, isSelfClosing, isSelfClosingTag, isTextOnly, setAttribute, setCodeNode, setSelfClosing, setTextOnly, visitAttributes
-
Methods inherited from class de.neuland.pug4j.parser.node.Node
getBlock, getColumn, getFileName, getLineNumber, getName, getNodes, getValue, hasBlock, hasNodes, isTextNode, pollNode, push, setBlock, setColumn, setFileName, setLineNumber, setName, setNodes, setValue
-
-
-
-
Method Detail
-
execute
public void execute(IndentWriter writer, PugModel model, PugTemplate template) throws PugCompilerException
- Specified by:
executein classNode- Throws:
PugCompilerException
-
setArguments
public void setArguments(String arguments)
-
isCall
public boolean isCall()
-
setCall
public void setCall(boolean call)
-
-