net.forthecrown.grenadier.annotations.tree.ArgumentTree Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grenadier-annotations Show documentation
Show all versions of grenadier-annotations Show documentation
Annotation-based command support for Grenadier
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