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

软件工程

开发平台:

Java

  1. package com.company.command;
  2. import com.company.CommandVO;
  3. import com.company.command_name.CommandName;
  4. import com.company.command_name.ls.AbstractLS;
  5. /**
  6.  * @author cbf4Life cbf4life@126.com
  7.  * I'm glad to share my knowledge with you all.
  8.  */
  9. public class LSCommand extends Command{
  10. public String execute(CommandVO vo){
  11. //返回链表的首节点
  12. CommandName firstNode = super.buildChain(AbstractLS.class).get(0);
  13. return firstNode.handleMessage(vo);
  14. }
  15. }