PersistDeckBody constructor

PersistDeckBody(
  1. Deck deckReceived
)

Implementation

PersistDeckBody(Deck deckReceived) {
  this.deckReceived = deckReceived;

  if (deckReceived != null) {
    myController.text = this.deckReceived.getName();
    oldName = this.deckReceived.getName();
  }
}