示例#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);