ChestShop-3/com/Acrobot/Breeze/Configuration/ConfigurationComment.java
2012-11-23 20:59:12 +01:00

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();
}