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

软件工程

开发平台:

Java

  1. package com.company.section4;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Nobleman extends EventCustomer {
  7. //定义贵族能够处理事件的级别
  8. public Nobleman() {
  9. super(EventCustomType.EDIT);
  10. super.addCustomType(EventCustomType.CLONE);
  11. }
  12. @Override
  13. public void exec(ProductEvent event) {
  14. //事件的源头
  15. Product p = event.getSource();
  16. //事件类型
  17. ProductEventType type = event.getEventType();
  18. if(type.getValue() == EventCustomType.CLONE.getValue()){
  19. System.out.println("贵族处理事件:"+p.getName() +"克隆,事件类型="+type);
  20. }else{
  21. System.out.println("贵族处理事件:"+p.getName() +"修改,事件类型="+type);
  22. }
  23. }
  24. }