summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/economy/register/Method.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/net/ess3/economy/register/Method.java')
-rw-r--r--Essentials/src/net/ess3/economy/register/Method.java28
1 files changed, 16 insertions, 12 deletions
diff --git a/Essentials/src/net/ess3/economy/register/Method.java b/Essentials/src/net/ess3/economy/register/Method.java
index 2ded29805..8ad3ecbc8 100644
--- a/Essentials/src/net/ess3/economy/register/Method.java
+++ b/Essentials/src/net/ess3/economy/register/Method.java
@@ -6,7 +6,8 @@ import org.bukkit.plugin.Plugin;
/**
* Interface to be implemented by a payment method.
*
- * @author Nijikokun <nijikokun@shortmail.com> (@nijikokun)
+ * @author Nijikokun <nijikokun@shortmail.com> (
+ * @nijikokun)
* @copyright Copyright (C) 2011
* @license AOL license <http://aol.nexua.org>
*/
@@ -16,9 +17,8 @@ public interface Method
* Encodes the Plugin into an Object disguised as the Plugin. If you want the original Plugin Class you must cast it
* to the correct Plugin, to do so you have to verify the name and or version then cast.
* <p/>
- * <pre>
- * if(method.getName().equalsIgnoreCase("iConomy"))
- * iConomy plugin = ((iConomy)method.getPlugin());</pre>
+ * <
+ * pre> if(method.getName().equalsIgnoreCase("iConomy")) iConomy plugin = ((iConomy)method.getPlugin());</pre>
*
* @return <code>Object</code>
* @see #getName()
@@ -48,8 +48,7 @@ public interface Method
public String getVersion();
/**
- * Returns the amount of decimal places that get stored
- * NOTE: it will return -1 if there is no rounding
+ * Returns the amount of decimal places that get stored NOTE: it will return -1 if there is no rounding
*
* @return <code>int</code> for each decimal place
*/
@@ -88,7 +87,9 @@ public interface Method
public boolean hasAccount(String name);
/**
- * Check to see if an account <code>name</code> is tied to a <code>bank</code>.
+ * Check to see if an account
+ * <code>name</code> is tied to a
+ * <code>bank</code>.
*
* @param bank Bank name
* @param name Account name
@@ -107,14 +108,16 @@ public interface Method
/**
* Forces an account creation
*
- * @param name Account name
+ * @param name Account name
* @param balance Initial account balance
* @return <code>boolean</code>
*/
public boolean createAccount(String name, Double balance);
/**
- * Returns a <code>MethodAccount</code> class for an account <code>name</code>.
+ * Returns a
+ * <code>MethodAccount</code> class for an account
+ * <code>name</code>.
*
* @param name Account name
* @return <code>MethodAccount</code> <em>or</em> <code>Null</code>
@@ -122,7 +125,9 @@ public interface Method
public MethodAccount getAccount(String name);
/**
- * Returns a <code>MethodBankAccount</code> class for an account <code>name</code>.
+ * Returns a
+ * <code>MethodBankAccount</code> class for an account
+ * <code>name</code>.
*
* @param bank Bank name
* @param name Account name
@@ -131,8 +136,7 @@ public interface Method
public MethodBankAccount getBankAccount(String bank, String name);
/**
- * Checks to verify the compatibility between this Method and a plugin.
- * Internal usage only, for the most part.
+ * Checks to verify the compatibility between this Method and a plugin. Internal usage only, for the most part.
*
* @param plugin Plugin
* @return <code>boolean</code>