From 0f748398bf56123d9c2717beed107aa9cdeee556 Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 8 Oct 2011 07:37:21 +0000 Subject: [PATCH] Checkstyle fixes --- .../forge/gui/deckeditor/DeckDisplay.java | 49 +++++++++++++++++-- 1 file changed, 44 insertions(+), 5 deletions(-) diff --git a/src/main/java/forge/gui/deckeditor/DeckDisplay.java b/src/main/java/forge/gui/deckeditor/DeckDisplay.java index 2421cb9b1f2..ec3b914d0dd 100644 --- a/src/main/java/forge/gui/deckeditor/DeckDisplay.java +++ b/src/main/java/forge/gui/deckeditor/DeckDisplay.java @@ -15,20 +15,59 @@ import forge.item.ItemPoolView; * @version $Id$ */ public interface DeckDisplay { + /** + * + * setDeck. + * @param top ItemPoolView + * @param bottom ItemPoolView + * @param gameType GameType + */ void setDeck(ItemPoolView top, ItemPoolView bottom, GameType gameType); + /** + * + * setItems. + * @param InventoryItem + * @param topParam ItemPoolView + * @param bottomParam ItemPoolView + * @param gt GameType + */ void setItems(ItemPoolView topParam, ItemPoolView bottomParam, GameType gt); - //top shows available card pool - //if constructed, top shows all cards - //if sealed, top shows 5 booster packs - //if draft, top shows cards that were chosen + /** + * + * Top shows available card pool. + * if constructed, top shows all cards + * if sealed, top shows 5 booster packs + * if draft, top shows cards that were chosen + * @return ItemPoolView + */ ItemPoolView getTop(); - //bottom shows cards that the user has chosen for his library + // + /** + * + * Bottom shows cards that the user has chosen for his library. + * @return ItemPoolView + */ ItemPoolView getBottom(); + /** + * + * Set title. + * @param message String + */ void setTitle(String message); + /** + * + * Get deck. + * @return Deck + */ Deck getDeck(); + /** + * + * Get game type. + * @return GameType + */ GameType getGameType(); }