javadocs!

This commit is contained in:
Sleaker 2011-11-25 16:04:16 -08:00
parent ea4e45bcdd
commit 7865019cda
4 changed files with 18 additions and 0 deletions

View File

@ -5,6 +5,10 @@ import net.milkbowl.vault.permission.Permission;
import org.bukkit.World;
import org.bukkit.entity.Player;
/**
* The main Chat API - allows for Prefix/Suffix nodes along with generic Info nodes if the linked Chat system supports them
*
*/
public abstract class Chat {
private Permission perms;

View File

@ -19,6 +19,10 @@
package net.milkbowl.vault.economy;
/**
* The main economy API
*
*/
public interface Economy {
/**

View File

@ -19,6 +19,12 @@
package net.milkbowl.vault.economy;
/**
* Indicates a typical Return for an Economy method.
* It includes a {@link ResponseType} indicating whether the plugin currently being used for Economy actually allows
* the method, or if the operation was a success or failure.
*
*/
public class EconomyResponse {
/**

View File

@ -28,6 +28,10 @@ import org.bukkit.entity.Player;
import org.bukkit.permissions.PermissionAttachment;
import org.bukkit.permissions.PermissionAttachmentInfo;
/**
* The main Permission API - allows for group and player based permission tests
*
*/
public abstract class Permission {
protected static final Logger log = Logger.getLogger("Minecraft");