Package org.pegdown.ast
Class SimpleNode
- java.lang.Object
-
- org.pegdown.ast.AbstractNode
-
- org.pegdown.ast.SimpleNode
-
public class SimpleNode extends AbstractNode
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SimpleNode.Type
-
Constructor Summary
Constructors Constructor Description SimpleNode(SimpleNode.Type type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Visitor visitor)
java.util.List<Node>
getChildren()
SimpleNode.Type
getType()
java.lang.String
toString()
-
Methods inherited from class org.pegdown.ast.AbstractNode
getEndIndex, getStartIndex, mapIndices, setEndIndex, setStartIndex, shiftIndices
-
-
-
-
Constructor Detail
-
SimpleNode
public SimpleNode(SimpleNode.Type type)
-
-
Method Detail
-
getType
public SimpleNode.Type getType()
-
getChildren
public java.util.List<Node> getChildren()
-
accept
public void accept(Visitor visitor)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classAbstractNode
-
-