blob: 50d638e02de709a9188d814096c2050dd190e6cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package dev.isxander.yacl3.config.v2.api.autogen;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* A regular option factory.
* <p>
* This creates a regular option with a
* {@link dev.isxander.yacl3.api.controller.StringControllerBuilder} controller.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface StringField {
}
|