blob: 5e14f9c25666b061ca005f9b0ecafff9773d6f5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package cc.polyfrost.oneconfig.config.migration;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* <pre style="font-size: 12px">{@code public @interface VigilanceName}</pre>
* This interface is used to specify a previous name for an element.<br>
* For example, if you changed the name of a variable when you migrated/updated your mod to use OneConfig,
* you can use this annotation to specify the previous name so that the Migrator can grab it.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface VigilanceName {
String name();
String category();
String subcategory();
}
|