public final class BlockComment extends Comment
AST node that represent block comments.
Block comments can has multi lines and are delimited by "/*" and "*/".| Constructor and Description |
|---|
BlockComment() |
BlockComment(int beginLine,
int beginColumn,
int endLine,
int endColumn,
String content) |
BlockComment(String content) |
| Modifier and Type | Method and Description |
|---|---|
<R,A> R |
accept(GenericVisitor<R,A> v,
A arg)
Accept method for visitor support.
|
<A> void |
accept(VoidVisitor<A> v,
A arg)
Accept method for visitor support.
|
getContent, setContentequals, getBeginColumn, getBeginLine, getData, getEndColumn, getEndLine, hashCode, setBeginColumn, setBeginLine, setData, setEndColumn, setEndLine, toStringpublic BlockComment()
public BlockComment(String content)
public BlockComment(int beginLine,
int beginColumn,
int endLine,
int endColumn,
String content)
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Nodepublic <A> void accept(VoidVisitor<A> v, A arg)
Node