Package co.aikar.commands
Interface AnnotationProcessor<T extends Annotation>
-
- All Known Implementing Classes:
ConditionsProcessor
@Deprecated public interface AnnotationProcessor<T extends Annotation>
Deprecated.
-
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default @Nullable Set<Class<?>>getApplicableParameters()Deprecated.default voidonBaseCommandRegister(BaseCommand command, T annotation)Deprecated.default voidonCommandRegistered(RegisteredCommand command, T annotation)Deprecated.default voidonParameterRegistered(RegisteredCommand command, int parameterIndex, Parameter p, T annotation)Deprecated.default voidonPostComand(CommandOperationContext context)Deprecated.default voidonPostContextResolution(CommandExecutionContext context, Object resolvedValue)Deprecated.default voidonPreComand(CommandOperationContext context)Deprecated.default voidonPreContextResolution(CommandExecutionContext context)Deprecated.
-
-
-
Method Detail
-
getApplicableParameters
@Nullable default @Nullable Set<Class<?>> getApplicableParameters()
Deprecated.
-
onBaseCommandRegister
default void onBaseCommandRegister(BaseCommand command, T annotation)
Deprecated.
-
onCommandRegistered
default void onCommandRegistered(RegisteredCommand command, T annotation)
Deprecated.
-
onParameterRegistered
default void onParameterRegistered(RegisteredCommand command, int parameterIndex, Parameter p, T annotation)
Deprecated.
-
onPreComand
default void onPreComand(CommandOperationContext context)
Deprecated.
-
onPostComand
default void onPostComand(CommandOperationContext context)
Deprecated.
-
onPreContextResolution
default void onPreContextResolution(CommandExecutionContext context)
Deprecated.
-
onPostContextResolution
default void onPostContextResolution(CommandExecutionContext context, Object resolvedValue)
Deprecated.
-
-