Uses of Class
ks.common.model.Stack

Packages that use Stack
ks.common.model Core set of classes needed to support the modeling within KombatSolitaire Plugins. 
 

Uses of Stack in ks.common.model
 

Subclasses of Stack in ks.common.model
 class BuildablePile
          A Model Element consisting of a pile of face down cards, on top of which one can build downwards.
 class Column
          Representation of a stack of cards that will appear either vertically or horizontally placed on the screen, slightly overlapping each other.
 class Deck
          Models a deck of cards as a Stack.
 class MultiDeck
          Models an object consisting of multiple decks.
 class Pile
          Represents a stack of cards where only the topmost card is visible.
 

Methods in ks.common.model that return Stack
 Stack Stack.getSelected()
          Return Stack of the selected cards.
 

Methods in ks.common.model with parameters of type Stack
 void Stack.push(Stack s)
          Push Stack onto existing stack; the stack parameter object is unchanged.
 

Constructors in ks.common.model with parameters of type Stack
Column(Stack cards)
          Construct a column from the given Stack.
Column(Stack cards, java.lang.String name)
          Construct a column with the specified name from the given Stack.