コード例 #1
0
 public DVDPlayer()
 {
     _state = new StandbyState();
 }
コード例 #2
0
 public DVDPlayer(DVDPlayerState state)
 {
     _state = state;
 }
コード例 #3
0
 public DVDPlayer()
 {
     this.state = new StandbyState();
 }
コード例 #4
0
 public DVDPlayer(DVDPlayerState state)
 {
     this.state = state;
 }
コード例 #5
0
 public DVDPlayerContext()
 {
     _state = new StandbyState();
 }
コード例 #6
0
 public DVDPlayerContext(DVDPlayerState state)
 {
     _state = state;
 }