com.vladsch.flexmark.util.ast.VisitHandler 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 com.vladsch.flexmark.util.visitor.AstHandler;
import org.jetbrains.annotations.NotNull;
/**
* Node visit handler for specific node type
*/
public class VisitHandler extends AstHandler> implements Visitor {
public VisitHandler(@NotNull Class klass, @NotNull Visitor adapter) {
super(klass, adapter);
}
public void visit(@NotNull Node node) {
//noinspection unchecked
getAdapter().visit((N) node);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy