mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-28 04:56:23 +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();
|
|
}
|