⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sectionlist.java

📁 网上购物系统
💻 JAVA
字号:
/**
  * @(#)tarena.data.CategoryList.java  2008-11-17  
  * Copy Right Information	: Tarena
  * Project					: xindou
  * JDK version used		: jdk1.6.4
  * Comments				: 此处输入简单类说明
  * Version					: 1.0
  * Sr	Date		Modified By		Why & What is modified
  * 1.	2008-11-17 	陈达     		新建
  **/
package tarena.data;

import java.io.Serializable;
import java.util.List;

@SuppressWarnings("serial")
public class SectionList implements Serializable {
	private AbractSection rootsection;
	private List<SectionList> childsection;	
	
	public SectionList() {}

	public SectionList(AbractSection rootsection, List<SectionList> childsection) {
		super();
		this.rootsection = rootsection;
		this.childsection = childsection;
	}
	
	
	public AbractSection getRootsection() {
		return rootsection;
	}
	public void setRootsection(AbractSection rootsection) {
		this.rootsection = rootsection;
	}
	public List<SectionList> getChildsection() {
		return childsection;
	}
	public void setChildsection(List<SectionList> childsection) {
		this.childsection = childsection;
	}
	
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -