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

net.forthecrown.grenadier.annotations.tree.ArgumentTree Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package net.forthecrown.grenadier.annotations.tree;

import lombok.Getter;
import lombok.Setter;
import org.jetbrains.annotations.ApiStatus.Internal;

@Internal
@Getter @Setter
public class ArgumentTree extends ChildCommandTree {

  private ArgumentTypeTree typeInfo;

  private SuggestsTree suggests;

  @Override
  public  R accept(TreeVisitor visitor, C context) {
    return visitor.visitArgument(this, context);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy