net.forthecrown.grenadier.annotations.tree.RootTree 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 java.util.List;
import lombok.Getter;
import lombok.Setter;
import org.jetbrains.annotations.ApiStatus.Internal;
@Internal
@Getter @Setter
public class RootTree extends AbstractCmdTree {
private Name permission;
private List aliases;
private boolean plainTranslation;
@Override
public R accept(TreeVisitor visitor, C context) {
return visitor.visitRoot(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy