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

软件工程

开发平台:

Java

  1. package com.company.section4;
  2. import java.util.ArrayList;
  3. /**
  4.  * @author cbf4Life cbf4life@126.com
  5.  * I'm glad to share my knowledge with you all.
  6.  */
  7. public class Composite extends Component {
  8. //构件容器
  9. private ArrayList<Component> componentArrayList = new ArrayList<Component>();
  10. //增加一个叶子构件或树枝构件
  11. public void add(Component component){
  12. this.componentArrayList.add(component);
  13. }
  14. //删除一个叶子构件或树枝构件
  15. public void remove(Component component){
  16. this.componentArrayList.remove(component);
  17. }
  18. //获得分支下的所有叶子构件和树枝构件
  19. public ArrayList<Component> getChildren(){
  20. return this.componentArrayList;
  21. }
  22. }