ChestShop-3/com/Acrobot/Breeze/Configuration/ConfigurationComment.java

20 lines
379 B
Java
Raw Normal View History

2012-11-23 20:59:12 +01:00
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();
}