summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/configuration/Configuration.java
diff options
context:
space:
mode:
authorfeildmaster <admin@feildmaster.com>2012-06-03 05:40:54 -0500
committerfeildmaster <admin@feildmaster.com>2012-06-03 05:40:54 -0500
commit062a3df78d228bfad2cb3bb84e1b900893a0197e (patch)
treedcd642d3fc4533448dcd39520e3be0c9f93fb114 /src/main/java/org/bukkit/configuration/Configuration.java
parentff198c25a80c030bf5d02399534f8d053c828511 (diff)
downloadbukkit-062a3df78d228bfad2cb3bb84e1b900893a0197e.tar
bukkit-062a3df78d228bfad2cb3bb84e1b900893a0197e.tar.gz
bukkit-062a3df78d228bfad2cb3bb84e1b900893a0197e.tar.lz
bukkit-062a3df78d228bfad2cb3bb84e1b900893a0197e.tar.xz
bukkit-062a3df78d228bfad2cb3bb84e1b900893a0197e.zip
Javadoc updates
Fixes BUKKIT-1653, Fixes BUKKIT-1383 and Fixes BUKKIT-1644
Diffstat (limited to 'src/main/java/org/bukkit/configuration/Configuration.java')
-rw-r--r--src/main/java/org/bukkit/configuration/Configuration.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/java/org/bukkit/configuration/Configuration.java b/src/main/java/org/bukkit/configuration/Configuration.java
index 6fa80186..ef887cff 100644
--- a/src/main/java/org/bukkit/configuration/Configuration.java
+++ b/src/main/java/org/bukkit/configuration/Configuration.java
@@ -8,11 +8,11 @@ import java.util.Map;
public interface Configuration extends ConfigurationSection {
/**
* Sets the default value of the given path as provided.
- * <p>
+ * <p />
* If no source {@link Configuration} was provided as a default collection,
* then a new {@link MemoryConfiguration} will be created to hold the new default
* value.
- * <p>
+ * <p />
* If value is null, the value will be removed from the default Configuration source.
*
* @param path Path of the value to set.
@@ -23,7 +23,7 @@ public interface Configuration extends ConfigurationSection {
/**
* Sets the default values of the given paths as provided.
- * <p>
+ * <p />
* If no source {@link Configuration} was provided as a default collection,
* then a new {@link MemoryConfiguration} will be created to hold the new default
* values.
@@ -35,11 +35,11 @@ public interface Configuration extends ConfigurationSection {
/**
* Sets the default values of the given paths as provided.
- * <p>
+ * <p />
* If no source {@link Configuration} was provided as a default collection,
* then a new {@link MemoryConfiguration} will be created to hold the new default
* value.
- * <p>
+ * <p />
* This method will not hold a reference to the specified Configuration, nor will it
* automatically update if that Configuration ever changes. If you require this,
* you should set the default source with {@link #setDefaults(org.bukkit.configuration.Configuration)}.
@@ -51,7 +51,7 @@ public interface Configuration extends ConfigurationSection {
/**
* Sets the source of all default values for this {@link Configuration}.
- * <p>
+ * <p />
* If a previous source was set, or previous default values were defined, then they will
* not be copied to the new source.
*
@@ -62,7 +62,7 @@ public interface Configuration extends ConfigurationSection {
/**
* Gets the source {@link Configuration} for this configuration.
- * <p>
+ * <p />
* If no configuration source was set, but default values were added, then a
* {@link MemoryConfiguration} will be returned. If no source was set and no
* defaults were set, then this method will return null.
@@ -73,7 +73,7 @@ public interface Configuration extends ConfigurationSection {
/**
* Gets the {@link ConfigurationOptions} for this {@link Configuration}.
- * <p>
+ * <p />
* All setters through this method are chainable.
*
* @return Options for this configuration