mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-12-15 05:41:51 +08:00
Fixed javadoc compile errors
This commit is contained in:
parent
70dca38281
commit
5d0f03c4c1
@ -270,7 +270,7 @@ public final class Reflection {
|
||||
* <p>
|
||||
* Strings enclosed with curly brackets - such as {TEXT} - will be replaced according to the following table:
|
||||
* </p>
|
||||
* <table border="1">
|
||||
* <table border="1" summary="Variables and description">
|
||||
* <tr>
|
||||
* <th>Variable</th>
|
||||
* <th>Content</th>
|
||||
|
@ -39,7 +39,7 @@ import java.util.UUID;
|
||||
* <p>
|
||||
* Table Name: plan_commandusages
|
||||
* <p>
|
||||
* For contained columns {@see Col}
|
||||
* For contained columns {@link Col}
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
|
@ -157,8 +157,10 @@ public class NicknamesTable extends UserUUIDTable {
|
||||
/**
|
||||
* Get nicknames of all users but doesn't map them by Server
|
||||
*
|
||||
* See {@link NicknamesTable#getAllNicknames}
|
||||
*
|
||||
* @return a {@code Map<UUID, List<Nickname>} with all nicknames of all users
|
||||
* @see NicknamesTable#getAllNicknames();
|
||||
*
|
||||
*/
|
||||
public Map<UUID, List<Nickname>> getAllNicknamesUnmapped() {
|
||||
String sql = "SELECT " +
|
||||
|
@ -36,7 +36,7 @@ import java.util.List;
|
||||
* <p>
|
||||
* Table Name: plan_security
|
||||
* <p>
|
||||
* For contained columns {@see Col}
|
||||
* For contained columns {@link Col}
|
||||
*
|
||||
* @author Rsl1122
|
||||
* @see WebUser
|
||||
|
@ -35,7 +35,7 @@ import java.util.*;
|
||||
* <p>
|
||||
* Table Name: plan_servers
|
||||
* <p>
|
||||
* For contained columns {@see Col}
|
||||
* For contained columns {@link Col}
|
||||
*
|
||||
* @author Rsl1122
|
||||
* @see Server
|
||||
|
@ -38,11 +38,11 @@ import java.sql.SQLException;
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* Table that is in charge of storing TPS, Players Online & Performance data.
|
||||
* Table that is in charge of storing TPS, Players Online and Performance data.
|
||||
* <p>
|
||||
* Table Name: plan_tps
|
||||
* <p>
|
||||
* For contained columns {@see Col}
|
||||
* For contained columns {@link Col}
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
@ -122,9 +122,6 @@ public class TPSTable extends Table {
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* @return @throws SQLException
|
||||
*/
|
||||
public List<TPS> getTPSData() {
|
||||
return getTPSData(getServerUUID());
|
||||
}
|
||||
|
@ -38,7 +38,7 @@ import java.util.*;
|
||||
* <p>
|
||||
* Table Name: plan_users
|
||||
* <p>
|
||||
* For contained columns {@see Col}
|
||||
* For contained columns {@link Col}
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
|
@ -88,7 +88,7 @@ public class HtmlTables {
|
||||
/**
|
||||
* Create a new Kill table.
|
||||
*
|
||||
* @param kills List of {@link PlayerKill]s to be added to the table.
|
||||
* @param kills List of {@link PlayerKill}s to be added to the table.
|
||||
* @param color Color the table header should be.
|
||||
* @return a new {@link KillsTable}.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user