mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Checkstyle fixes
This commit is contained in:
@@ -15,20 +15,59 @@ import forge.item.ItemPoolView;
|
|||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public interface DeckDisplay {
|
public interface DeckDisplay {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* setDeck.
|
||||||
|
* @param top ItemPoolView<CardPrinted>
|
||||||
|
* @param bottom ItemPoolView<CardPrinted>
|
||||||
|
* @param gameType GameType
|
||||||
|
*/
|
||||||
void setDeck(ItemPoolView<CardPrinted> top, ItemPoolView<CardPrinted> bottom, GameType gameType);
|
void setDeck(ItemPoolView<CardPrinted> top, ItemPoolView<CardPrinted> bottom, GameType gameType);
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* setItems.
|
||||||
|
* @param <T> InventoryItem
|
||||||
|
* @param topParam ItemPoolView<T>
|
||||||
|
* @param bottomParam ItemPoolView<T>
|
||||||
|
* @param gt GameType
|
||||||
|
*/
|
||||||
<T extends InventoryItem> void setItems(ItemPoolView<T> topParam, ItemPoolView<T> bottomParam, GameType gt);
|
<T extends InventoryItem> void setItems(ItemPoolView<T> topParam, ItemPoolView<T> bottomParam, GameType gt);
|
||||||
|
|
||||||
//top shows available card pool
|
/**
|
||||||
//if constructed, top shows all cards
|
*
|
||||||
//if sealed, top shows 5 booster packs
|
* Top shows available card pool.
|
||||||
//if draft, top shows cards that were chosen
|
* if constructed, top shows all cards
|
||||||
|
* if sealed, top shows 5 booster packs
|
||||||
|
* if draft, top shows cards that were chosen
|
||||||
|
* @return ItemPoolView<InventoryItem>
|
||||||
|
*/
|
||||||
ItemPoolView<InventoryItem> getTop();
|
ItemPoolView<InventoryItem> 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<InventoryItem>
|
||||||
|
*/
|
||||||
ItemPoolView<InventoryItem> getBottom();
|
ItemPoolView<InventoryItem> getBottom();
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Set title.
|
||||||
|
* @param message String
|
||||||
|
*/
|
||||||
void setTitle(String message);
|
void setTitle(String message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Get deck.
|
||||||
|
* @return Deck
|
||||||
|
*/
|
||||||
Deck getDeck();
|
Deck getDeck();
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Get game type.
|
||||||
|
* @return GameType
|
||||||
|
*/
|
||||||
GameType getGameType();
|
GameType getGameType();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user