Fixed all javadoc errors and regenerated them.

This commit is contained in:
ProSavage
2018-11-19 01:34:29 -06:00
parent ff6a3b2b1a
commit 7a59ad4a66
344 changed files with 3093 additions and 2184 deletions

View File

@@ -19,9 +19,7 @@ import java.util.List;
* Logged in players always have exactly one FPlayer instance. Logged out players may or may not have an FPlayer
* instance. They will always have one if they are part of a faction. This is because only players with a faction are
* saved to disk (in order to not waste disk space).
* <plugin/>
* The FPlayer is linked to a minecraft player using the player name.
* <plugin/>
* The same instance is always returned for the same player. This means you can use the == operator. No .equals method
* necessary.
*/
@@ -38,7 +36,7 @@ public interface FPlayer extends EconomyParticipator {
/**
* Toggles the stealth of the FPlayer depending on the parameter
*
* @param stealthToggle
* @param stealthToggle - toggles stealth
*/
void setStealth(boolean stealthToggle);
@@ -62,7 +60,7 @@ public interface FPlayer extends EconomyParticipator {
/**
* Sets the faction of the FPlayer
*
* @param faction
* @param faction faction to set.
*/
void setFaction(Faction faction);