Fix Javadoc syntax errors

This commit is contained in:
Daniel Saukel 2020-01-29 02:06:48 +01:00
parent 0fe56fdf61
commit a817ba41ba
7 changed files with 8 additions and 8 deletions

View File

@ -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
*/

View File

@ -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

View File

@ -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
*/

View File

@ -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 &gt;0 {@link #getLives() lives} left.
*
* @param checkpoint the checkpoint location
*/

View File

@ -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 &gt;=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 &gt;=0 or -1, which means unlimited lives.
*
* @param lives the amount of lives the group currently has left
*/

View File

@ -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
*/

View File

@ -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
*/