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

软件工程

开发平台:

Java

  1. package com.company.section5;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 展示报表,该访问者的工作就是看到什么数据展示什么数据
  6.  */
  7. public class ShowVisitor implements IShowVisitor {
  8. private String info = "";
  9. //打印出报表
  10. public void report() {
  11. System.out.println(this.info);
  12. }
  13. //访问普通员工,组装信息
  14. public void visit(CommonEmployee commonEmployee) {
  15. this.info = this.info + this.getBasicInfo(commonEmployee)+ "工作:"+commonEmployee.getJob()+"tn";
  16. }
  17. //访问经理,然后组装信息
  18. public void visit(Manager manager) {
  19. this.info = this.info + this.getBasicInfo(manager) +  "业绩:"+manager.getPerformance() + "tn";
  20. }
  21. //组装出基本信息
  22. private String getBasicInfo(Employee employee){
  23. String info = "姓名:" + employee.getName() + "t";
  24. info = info + "性别:" + (employee.getSex() == Employee.FEMALE?"女":"男") + "t";
  25. info = info + "薪水:" + employee.getSalary()  + "t";
  26. return info;
  27. }
  28. }