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

软件工程

开发平台:

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 Invoker {
  7. private Command command;
  8. //受气包,接受命令
  9. public void setCommand(Command _command){
  10. this.command = _command;
  11. }
  12. //执行命令
  13. public void action(){
  14. this.command.execute();
  15. }
  16. }