Package io.markdom.model
Interface MarkdomCommentBlock
-
- All Superinterfaces:
MarkdomBlock,MarkdomNode
public interface MarkdomCommentBlock extends MarkdomBlock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MarkdomBlockTypegetBlockType()StringgetComment()default <Result> Resultselect(MarkdomBlockSelection<Result> selection)MarkdomCommentBlocksetComment(String comment)-
Methods inherited from interface io.markdom.model.MarkdomBlock
choose, getNodeType, getParent, select
-
Methods inherited from interface io.markdom.model.MarkdomNode
choose, countChildren, getChildren, getDocument, getFactory, getIndex, hasChildren, hasDocument, hasParent
-
-
-
-
Method Detail
-
getBlockType
default MarkdomBlockType getBlockType()
- Specified by:
getBlockTypein interfaceMarkdomBlock
-
getComment
String getComment()
-
setComment
MarkdomCommentBlock setComment(String comment)
-
select
default <Result> Result select(MarkdomBlockSelection<Result> selection)
- Specified by:
selectin interfaceMarkdomBlock
-
-