Package com.ganteater.ae.processor.annotation
package com.ganteater.ae.processor.annotation
Runtime-retained annotations for attaching user-facing metadata to command classes.
This package defines annotations that can be applied to command implementation types and then discovered at runtime (via reflection) by the command processor, help output, or documentation tooling.
Annotations
CommandDescription- a single, human-readable summary.CommandExamples- one or more example invocations.
Example
@CommandDescription("Lists all configured environments")
@CommandExamples({"env list", "env list --verbose"})
public final class EnvListCommand {
// ...
}
-
Annotation Types