Exemplo n.º 1
0
 public DecisionMaker(ListState state)
 {
     this.State = state;
 }
Exemplo n.º 2
0
 public void SetFileChosenState()
 {
     this.State         = new FileChosen();
     this.State.context = this;
 }
Exemplo n.º 3
0
 public void SetNotReadyState()
 {
     this.State         = new NotReady();
     this.State.context = this;
 }
Exemplo n.º 4
0
 public void SetFolderChosenState()
 {
     this.State         = new FolderChosen();
     this.State.context = this;
 }