Fix: Artist JavaDoc parameter descriptions
This commit is contained in:
@@ -32,21 +32,22 @@ public class Artist extends Character {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an Artist character card with the specified era.
|
* Creates an Artist character card with the specified image id and era.
|
||||||
*
|
*
|
||||||
* @param idIMG
|
* @param idIMG the image identifier of the Artist card.
|
||||||
* @param Era the era of the Artist card
|
* @param Era the era of the Artist card.
|
||||||
*/
|
*/
|
||||||
public Artist(String idIMG,int Era) {
|
public Artist(String idIMG,int Era) {
|
||||||
super(idIMG,Era, CharacterType.ARTIST);
|
super(idIMG,Era, CharacterType.ARTIST);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an Artist character card with the specified Era and minimum number of players required to play it.
|
* Creates an Artist character card with the specified image id, era and
|
||||||
|
* minimum number of players required to play it.
|
||||||
*
|
*
|
||||||
* @param idIMG
|
* @param idIMG the image identifier of the Artist card.
|
||||||
* @param Era the era of the Artist card
|
* @param Era the era of the Artist card.
|
||||||
* @param nMin the minimum number of players required for the card
|
* @param nMin the minimum number of players required for the card.
|
||||||
*/
|
*/
|
||||||
public Artist(String idIMG,int Era,int nMin) {
|
public Artist(String idIMG,int Era,int nMin) {
|
||||||
super(idIMG,Era, CharacterType.ARTIST,nMin);
|
super(idIMG,Era, CharacterType.ARTIST,nMin);
|
||||||
|
|||||||
Reference in New Issue
Block a user