📚 Add since annotations to new classes
This commit is contained in:
parent
8d69767c15
commit
1249b74e83
7 changed files with 9 additions and 0 deletions
|
|
@ -71,6 +71,8 @@ public final class SelectorParseException extends ParserException {
|
|||
|
||||
/**
|
||||
* Reasons for which selector parsing may fail
|
||||
*
|
||||
* @since 1.1.0
|
||||
*/
|
||||
public enum FailureReason {
|
||||
|
||||
|
|
|
|||
|
|
@ -50,6 +50,7 @@ import java.util.regex.Pattern;
|
|||
* Accepts {@link NamedTextColor NamedTextColors}, Legacy Minecraft {@literal &} color codes, Hex Codes (#RRGGBB)
|
||||
*
|
||||
* @param <C> Command sender type
|
||||
* @since 1.1.0
|
||||
*/
|
||||
public final class TextColorArgument<C> extends CommandArgument<C, TextColor> {
|
||||
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ import java.util.function.Function;
|
|||
* Injection module that allows for {@link VelocityCommandManager} to be injectable
|
||||
*
|
||||
* @param <C> Command sender type
|
||||
* @since 1.1.0
|
||||
*/
|
||||
public final class CloudInjectionModule<C> extends AbstractModule {
|
||||
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@ import java.util.LinkedList;
|
|||
|
||||
/**
|
||||
* Velocity specific {@link Caption caption keys}
|
||||
* @since 1.1.0
|
||||
*/
|
||||
public final class VelocityCaptionKeys {
|
||||
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@ import java.util.stream.Collectors;
|
|||
* Argument parser for {@link Player players}
|
||||
*
|
||||
* @param <C> Command sender type
|
||||
* @since 1.1.0
|
||||
*/
|
||||
public final class PlayerArgument<C> extends CommandArgument<C, Player> {
|
||||
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@ import java.util.stream.Collectors;
|
|||
* Argument parser for {@link RegisteredServer servers}
|
||||
*
|
||||
* @param <C> Command sender type
|
||||
* @since 1.1.0
|
||||
*/
|
||||
public final class ServerArgument<C> extends CommandArgument<C, RegisteredServer> {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue