com.vladsch.flexmark.util.ast.NodeTracker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
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