aboutsummaryrefslogtreecommitdiffstats
path: root/src/eu/equalparts/cardbase/data/FullCardSet.java
diff options
context:
space:
mode:
authorEduardo Pedroni <e.pedroni91@gmail.com>2015-06-06 22:12:41 +0200
committerEduardo Pedroni <e.pedroni91@gmail.com>2015-06-06 22:12:41 +0200
commit4816a489e476c324155fa1f4e8adfe30867a766c (patch)
tree87776851bba9f6611093cb276ca67af8eaa68501 /src/eu/equalparts/cardbase/data/FullCardSet.java
parent1b5b8f11d0dd33dc41c5c5a6841307fbb392f4c7 (diff)
Bombproofed the CLI a bit more, tidied up the underlying API, now thinking about decks
Diffstat (limited to 'src/eu/equalparts/cardbase/data/FullCardSet.java')
-rw-r--r--src/eu/equalparts/cardbase/data/FullCardSet.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/eu/equalparts/cardbase/data/FullCardSet.java b/src/eu/equalparts/cardbase/data/FullCardSet.java
index 48488b5..0f58633 100644
--- a/src/eu/equalparts/cardbase/data/FullCardSet.java
+++ b/src/eu/equalparts/cardbase/data/FullCardSet.java
@@ -11,35 +11,35 @@ public class FullCardSet extends CardSet {
private ArrayList<Card> cards;
/**
- * @return the border
+ * @return the set's border type.
*/
public String getBorder() {
return border;
}
/**
- * @return the type
+ * @return the type of the set.
*/
public String getType() {
return type;
}
/**
- * @return the block
+ * @return the set's block.
*/
public String getBlock() {
return block;
}
/**
- * @return the gathererCode
+ * @return the set's Gatherer code.
*/
public String getGathererCode() {
return gathererCode;
}
/**
- * @return the cards
+ * @return a full list of the set's cards.
*/
public ArrayList<Card> getCards() {
return cards;
@@ -49,7 +49,7 @@ public class FullCardSet extends CardSet {
* Searches for a card by number (the one shown on the card itself).
*
* @param number the number of the card to search.
- * @return the card, or null if no card is found with that number.
+ * @return the requested {@code Card}, or null if no card is found with that number.
*/
public Card getCardByNumber(String number) {
for (Card card : cards) {