com.vladsch.flexmark.util.visitor.AstNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-util-visitor Show documentation
Show all versions of flexmark-util-visitor Show documentation
flexmark-java visitor utility classes
The newest version!
package com.vladsch.flexmark.util.visitor;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Interface for converting to AstAccess
*
* @param type of node
*/
public interface AstNode {
@Nullable
N getFirstChild(@NotNull N node);
@Nullable
N getNext(@NotNull N node);
}