Root.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
- package com.company.section1;
- import java.util.ArrayList;
- /**
- * @author cbf4Life cbf4life@126.com
- * I'm glad to share my knowledge with you all.
- * 跟节点的实现类
- */
- @SuppressWarnings("all")
- public class Root implements IRoot {
- //保存跟节点下的树枝节点和树叶节点,Subordinate的意思是下级
- private ArrayList subordinateList = new ArrayList();
- //跟节点的名称
- private String name = "";
- //根节点的职位
- private String position = "";
- //跟节点的薪水
- private int salary = 0;
-
- //通过构造函数传递进来总经理的信息
- public Root(String name,String position,int salary){
- this.name = name;
- this.position = position;
- this.salary = salary;
- }
-
- //增加树枝节点
- public void add(IBranch branch) {
- this.subordinateList.add(branch);
- }
- //增加叶子节点,比如秘书,直接隶属于总经理
- public void add(ILeaf leaf) {
- this.subordinateList.add(leaf);
- }
-
- //得到自己的信息
- public String getInfo() {
- String info = "";
- info = "名称:"+ this.name;;
- info = info + "t职位:" + this.position;
- info = info + "t薪水: " + this.salary;
- return info;
- }
- //得到下级的信息
- public ArrayList getSubordinateInfo() {
- return this.subordinateList;
- }
- }