Context.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Context {
  7. //定义出所有的电梯状态
  8. public final static OpenningState openningState = new OpenningState();
  9. public final static ClosingState closeingState = new ClosingState();
  10. public final static RunningState runningState = new RunningState();
  11. public final static StoppingState stoppingState = new StoppingState();
  12. //定一个当前电梯状态
  13. private LiftState liftState;
  14. public LiftState getLiftState() {
  15. return liftState;
  16. }
  17. public void setLiftState(LiftState liftState) {
  18. this.liftState = liftState;
  19. //把当前的环境通知到各个实现类中
  20. this.liftState.setContext(this);
  21. }
  22. public void open(){
  23. this.liftState.open();
  24. }
  25. public void close(){
  26. this.liftState.close();
  27. }
  28. public void run(){
  29. this.liftState.run();
  30. }
  31. public void stop(){
  32. this.liftState.stop();
  33. }
  34. }