예제 #1
0
파일: DoorState.cs 프로젝트: wwake/dpics
 /// <summary>
 /// By default, discard notifications that the door
 /// finished opening or closing.
 /// </summary>
 public virtual void Complete(Door door)
 {
 }
예제 #2
0
파일: DoorState.cs 프로젝트: wwake/dpics
 /// <summary>
 /// By default, discard notifications that the door
 /// began closing after having been open for a while.
 /// </summary>
 public virtual void Timeout(Door door)
 {
 }
예제 #3
0
파일: DoorState.cs 프로젝트: wwake/dpics
 /// <summary>
 /// Subclasses must decide what to do when the user
 /// clicks the physical carousel button.
 /// </summary>
 public abstract void Touch(Door door);