2013-01-18 21:51:08 +00:00
|
|
|
package de.jaschastarke.minecraft.limitedcreative;
|
|
|
|
|
|
|
|
import de.jaschastarke.bukkit.lib.Core;
|
|
|
|
import de.jaschastarke.bukkit.lib.configuration.PluginConfiguration;
|
2013-01-20 12:15:34 +00:00
|
|
|
import de.jaschastarke.configuration.annotations.IsConfigurationNode;
|
2013-01-18 21:51:08 +00:00
|
|
|
import de.jaschastarke.maven.ArchiveDocComments;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Limited Creative - Configuration
|
|
|
|
*
|
|
|
|
* (YAML-Syntax: http://en.wikipedia.org/wiki/YAML)
|
2013-02-05 20:04:05 +00:00
|
|
|
*
|
|
|
|
* This configuration-file is automatically written when changed via ingame-commands. So any manual added comments are
|
|
|
|
* removed.
|
2013-01-18 21:51:08 +00:00
|
|
|
*/
|
|
|
|
@ArchiveDocComments
|
|
|
|
public class Config extends PluginConfiguration {
|
|
|
|
public Config(Core plugin) {
|
|
|
|
super(plugin);
|
|
|
|
}
|
2013-01-20 12:15:34 +00:00
|
|
|
|
2013-02-01 21:25:43 +00:00
|
|
|
/**
|
|
|
|
* Metrics
|
|
|
|
*
|
|
|
|
* This settings allows the Addon-Author to track the Servers using this plugin. It will not track any player
|
|
|
|
* related data like names, ips, online time or such. Please do not disable the option! As more servers are using
|
|
|
|
* the plugin and the author knows, as more he is willing to support the plugin! Its a win-win for both.
|
|
|
|
*
|
|
|
|
* default: true
|
|
|
|
* @TODO Move to a sub-class modular configuration
|
|
|
|
*/
|
|
|
|
@IsConfigurationNode(order = 1000)
|
|
|
|
public boolean getMetrics() {
|
|
|
|
return config.getBoolean("metrics", true);
|
|
|
|
}
|
|
|
|
|
2013-01-20 12:15:34 +00:00
|
|
|
/**
|
|
|
|
* Debug
|
2013-02-01 21:25:43 +00:00
|
|
|
*
|
|
|
|
* The debug modus spams much details about the plugin to the server-log (console) which can help to solve issues.
|
|
|
|
*
|
|
|
|
* default: false
|
2013-01-20 12:15:34 +00:00
|
|
|
*/
|
|
|
|
@IsConfigurationNode(order = 9999)
|
|
|
|
public boolean getDebug() {
|
|
|
|
return config.getBoolean("debug", false);
|
|
|
|
}
|
2013-01-18 21:51:08 +00:00
|
|
|
}
|