aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/config/migration/CfgName.java
blob: 560c3748cd41892b806be06ca34d699653c4573c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 CfgName}</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 CfgName {
    String name();
    String category();
}