All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.util.ast.NodeTracker Maven / Gradle / Ivy

There is a newer version: 4.15.102
Show newest version
package com.vladsch.flexmark.util.ast;

import org.jetbrains.annotations.NotNull;

public interface NodeTracker {
    void nodeAdded(@NotNull Node node);
    void nodeAddedWithChildren(@NotNull Node node);
    void nodeAddedWithDescendants(@NotNull Node node);

    void nodeRemoved(@NotNull Node node);
    void nodeRemovedWithChildren(@NotNull Node node);
    void nodeRemovedWithDescendants(@NotNull Node node);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy