Package com.vladsch.flexmark.util.ast
Interface BlockTracker
-
public interface BlockTracker
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidblockAdded(@NotNull Block node)voidblockAddedWithChildren(@NotNull Block node)voidblockAddedWithDescendants(@NotNull Block node)voidblockRemoved(@NotNull Block node)voidblockRemovedWithChildren(@NotNull Block node)voidblockRemovedWithDescendants(@NotNull Block node)
-
-
-
Method Detail
-
blockAdded
void blockAdded(@NotNull @NotNull Block node)
-
blockAddedWithChildren
void blockAddedWithChildren(@NotNull @NotNull Block node)
-
blockAddedWithDescendants
void blockAddedWithDescendants(@NotNull @NotNull Block node)
-
blockRemoved
void blockRemoved(@NotNull @NotNull Block node)
-
blockRemovedWithChildren
void blockRemovedWithChildren(@NotNull @NotNull Block node)
-
blockRemovedWithDescendants
void blockRemovedWithDescendants(@NotNull @NotNull Block node)
-
-