ChestShop-3/src/main/java/com/Acrobot/ChestShop/Database/DatabaseFileName.java
2015-05-22 13:26:07 +02:00

14 lines
328 B
Java

package com.Acrobot.ChestShop.Database;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Represents the filename of the database (inside ChestShop's folder)
* @author Andrzej Pomirski
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface DatabaseFileName {
String value();
}