|
@@ -7,10 +7,13 @@ import java.lang.annotation.Target;
|
|
|
|
|
|
@Target(ElementType.METHOD)
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
+//TODO: Rename to ConfigEntryListener
|
|
|
public @interface ConfigEntrySaveConsumer {
|
|
|
|
|
|
String value();
|
|
|
|
|
|
Class<? extends ConfigEntryContainer> container() default ConfigEntryContainer.class;
|
|
|
|
|
|
+ //TODO: Add boolean to update field regardless of this save consumer
|
|
|
+
|
|
|
}
|