Package io.markdom.model
Interface MarkdomCodeContent
-
- All Superinterfaces:
MarkdomContent,MarkdomNode
public interface MarkdomCodeContent extends MarkdomContent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StringgetCode()default MarkdomContentTypegetContentType()default <Result> Resultselect(MarkdomContentSelection<Result> selection)MarkdomCodeContentsetCode(String code)-
Methods inherited from interface io.markdom.model.MarkdomContent
choose, getNodeType, select
-
Methods inherited from interface io.markdom.model.MarkdomNode
choose, countChildren, getChildren, getDocument, getFactory, getIndex, getParent, hasChildren, hasDocument, hasParent
-
-
-
-
Method Detail
-
getContentType
default MarkdomContentType getContentType()
- Specified by:
getContentTypein interfaceMarkdomContent
-
getCode
String getCode()
-
setCode
MarkdomCodeContent setCode(String code)
-
select
default <Result> Result select(MarkdomContentSelection<Result> selection)
- Specified by:
selectin interfaceMarkdomContent
-
-