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

com.vladsch.flexmark.util.visitor.AstNode Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy