mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-12-01 06:23:22 +01:00
20 lines
379 B
Java
20 lines
379 B
Java
|
package com.Acrobot.Breeze.Configuration;
|
||
|
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
|
||
|
/**
|
||
|
* Annotation for a configuration value
|
||
|
*
|
||
|
* @author Acrobot
|
||
|
*/
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
public @interface ConfigurationComment {
|
||
|
/**
|
||
|
* This option's comment
|
||
|
*
|
||
|
* @return Comment
|
||
|
*/
|
||
|
public String value();
|
||
|
}
|