Pulling all pending Bukkit-JavaDoc changes

By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
Bukkit/Spigot
2013-05-16 04:41:09 -05:00
parent a25fb951f6
commit 1366d7b502
11 changed files with 1063 additions and 102 deletions

View File

@@ -130,9 +130,20 @@ public interface Plugin extends TabExecutor {
public void setNaggable(boolean canNag);
/**
* Gets the {@link EbeanServer} tied to this plugin
* Gets the {@link EbeanServer} tied to this plugin. This will only be
* available if enabled in the {@link
* PluginDescriptionFile#isDatabaseEnabled()}
* <p>
* <i>For more information on the use of <a href="http://www.avaje.org/">
* Avaje Ebeans ORM</a>, see <a
* href="http://www.avaje.org/ebean/documentation.html">Avaje Ebeans
* Documentation</a></i>
* <p>
* <i>For an example using Ebeans ORM, see <a
* href="https://github.com/Bukkit/HomeBukkit">Bukkit's Homebukkit Plugin
* </a></i>
*
* @return Ebean server instance
* @return ebean server instance or null if not enabled
*/
public EbeanServer getDatabase();