📄 graphicitemlistviewbean.java
字号:
/*
* Created on 2005-8-7
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package viewBeans;
import java.util.List;
/**
* <p>Title: GraphicItemListBean.java</p>
*
* <p>Description: </p>
*
* <p>Copyright: SCUT Copyright (c) 2005</p>
*
* <p>Company: KHC</p>
*
* @author yukizh
*
* @version 1.0
*/
public class GraphicItemListViewBean {
private List graphicTypeList;
private List graphicItemList;
private int selectedGraphicTypeId = 0;
/**
* @return Returns the graphicItemList.
*/
public List getGraphicItemList() {
return graphicItemList;
}
/**
* @param graphicItemList The graphicItemList to set.
*/
public void setGraphicItemList(List graphicItemList) {
this.graphicItemList = graphicItemList;
}
/**
* @return Returns the graphicTypeList.
*/
public List getGraphicTypeList() {
return graphicTypeList;
}
/**
* @param graphicTypeList The graphicTypeList to set.
*/
public void setGraphicTypeList(List graphicTypeList) {
this.graphicTypeList = graphicTypeList;
}
/**
* @return Returns the selectedGraphicTypeId.
*/
public int getSelectedGraphicTypeId() {
return selectedGraphicTypeId;
}
/**
* @param selectedGraphicTypeId The selectedGraphicTypeId to set.
*/
public void setSelectedGraphicTypeId(int selectedGraphicTypeId) {
this.selectedGraphicTypeId = selectedGraphicTypeId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -