Add: Added Javadoc For "toStringBoard" Method In Character.java.

This commit is contained in:
GabrieleRadice
2026-04-30 17:45:21 +02:00
parent 8b8f565eb1
commit 805f71d80a
@@ -60,6 +60,17 @@ public abstract class Character extends TribeCard implements Cloneable {
return super.toString();
}
/**
* Prints a string representation of this {@code Character}. This specific variation is used in the {@code Game}'s
* toString to print a more detailed version.
* <p>Includes:
* <li>{@link it.polimi.ingsw.gc14.Model.Cards.TribeCards.CharacterType Type}
* </p>
* @return {@code String} - a string representation of this {@code Character}.
* @see it.polimi.ingsw.gc14.Model.Game Game
* @see it.polimi.ingsw.gc14.Model.GamePackage.Board Board
*/
@Override
public String toStringBoard()
{