mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-07 19:30:48 +01:00
Fix Javadoc syntax errors
This commit is contained in:
parent
0fe56fdf61
commit
a817ba41ba
@ -25,7 +25,7 @@ import org.bukkit.entity.Player;
|
||||
public interface Requirement {
|
||||
|
||||
/**
|
||||
* Sets up the requirement from the given requirements {@link de.erethon.dungeonsxl.api.game.GameRule} section.
|
||||
* Sets up the requirement from the given requirements {@link de.erethon.dungeonsxl.api.dungeon.GameRule} section.
|
||||
*
|
||||
* @param config the requirements config section
|
||||
*/
|
||||
|
@ -17,7 +17,7 @@ package de.erethon.dungeonsxl.api;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
/**
|
||||
* Something players are given when they successfully finish a {@link de.erethon.dungeonsxl.api.game.Dungeon}.
|
||||
* Something players are given when they successfully finish a {@link de.erethon.dungeonsxl.api.dungeon.Dungeon}.
|
||||
* <p>
|
||||
* @see de.erethon.dungeonsxl.api.player.PlayerGroup#getRewards()
|
||||
* @author Daniel Saukel
|
||||
|
@ -96,7 +96,7 @@ public interface Game {
|
||||
/**
|
||||
* Returns the rules of the dungeon of this game.
|
||||
* <p>
|
||||
* This is not necessarily represented 1:1 by a config file because it is usually merged together through {@link #setupRules()}.
|
||||
* This is not necessarily represented 1:1 by a config file because it is usually merged together through {@link Dungeon#setupRules()}.
|
||||
*
|
||||
* @return the rules of the dungeon of this game
|
||||
*/
|
||||
|
@ -77,7 +77,7 @@ public interface GamePlayer extends InstancePlayer {
|
||||
/**
|
||||
* Sets the location of the last checkpoint the player reached.
|
||||
* <p>
|
||||
* This is where the player respawns if they die and have -1 or >0 {@link #getLives() lives} left.
|
||||
* This is where the player respawns if they die and have -1 or >0 {@link #getLives() lives} left.
|
||||
*
|
||||
* @param checkpoint the checkpoint location
|
||||
*/
|
||||
|
@ -342,7 +342,7 @@ public interface PlayerGroup {
|
||||
/**
|
||||
* Sets the initial amount of lives.
|
||||
* <p>
|
||||
* The value must be >=0 or -1, which means unlimited lives.
|
||||
* The value must be >=0 or -1, which means unlimited lives.
|
||||
*
|
||||
* @param lives the new amount of lives known as the initial amount
|
||||
*/
|
||||
@ -358,7 +358,7 @@ public interface PlayerGroup {
|
||||
/**
|
||||
* Sets the amount of lives the group currently has left.
|
||||
* <p>
|
||||
* The value must be >=0 or -1, which means unlimited lives.
|
||||
* The value must be >=0 or -1, which means unlimited lives.
|
||||
*
|
||||
* @param lives the amount of lives the group currently has left
|
||||
*/
|
||||
|
@ -34,7 +34,7 @@ public interface InstanceWorld {
|
||||
/**
|
||||
* Returns the name of the resource world of this instance.
|
||||
* <p>
|
||||
* Use {@link #getWorld()#getName()} to get the name of the instantiated world (like e.g. DXL_Game_1).
|
||||
* Use {@link #getWorld()}{@link org.bukkit.World#getName() #getName()} to get the name of the instantiated world (like e.g. DXL_Game_1).
|
||||
*
|
||||
* @return the name of the resource world of this instance
|
||||
*/
|
||||
|
@ -34,7 +34,7 @@ public interface ResourceWorld {
|
||||
/**
|
||||
* Returns the name of this resource world.
|
||||
* <p>
|
||||
* Equals {@link #getFolder()#getName()}.
|
||||
* Equals {@link #getFolder()}{@link File#getName() #getName()}.
|
||||
*
|
||||
* @return name of this resource world
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user