77import java .util .stream .Collectors ;
88
99/**
10- * The Force class is used to get information about each force in a match.
10+ * The {@link Force} class is used to get information about each force in a match.
1111 * Normally this is considered a team.
1212 *
13- * @note It is not called a team because players on the same force do not necessarily need
13+ * It is not called a team because players on the same force do not necessarily need
1414 * to be allied at the beginning of a match.
1515 *
1616 */
@@ -27,32 +27,27 @@ public class Force implements Comparable<Force>{
2727 }
2828
2929 /**
30- * Retrieves the unique ID that represents this Force.
30+ * Retrieves the unique ID that represents this {@link Force} .
3131 *
32- * @return An integer containing the ID for the Force.
32+ * @return An integer containing the ID for the {@link Force} .
3333 */
3434 public int getID () {
3535 return id ;
3636 }
3737
3838 /**
39- * Retrieves the name of the Force.
39+ * Retrieves the name of the {@link Force} .
4040 *
4141 * @return A String object containing the name of the force.
42- *
43- *
44- * @note Don't forget to use String when passing this parameter to
45- * Game#sendText and other variadic functions.
4642 */
4743 public String getName () {
4844 return name ;
4945 }
5046
5147 /**
52- * Retrieves the set of players that belong to this Force.
53- *
54- * @return A List<Player> object containing the players that are part of this Force.
48+ * Retrieves the set of players that belong to this {@link Force}.
5549 *
50+ * @return A List<Player> object containing the players that are part of this {@link Force}.
5651 */
5752 public List <Player > getPlayers () {
5853 return game .getPlayers ().stream ()
0 commit comments