sectionlist.java
来自「基于struts+hibernate的电子商务网站。可运行。数据库mysql」· Java 代码 · 共 45 行
JAVA
45 行
/**
* @(#)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 + =
减小字号Ctrl + -
显示快捷键?