catalogform.java

来自「一个免费wap站」· Java 代码 · 共 98 行

JAVA
98
字号
package com.eline.wap.catalog.struts;

import org.apache.struts.action.ActionForm;
import org.apache.struts.upload.FormFile;

public class CatalogForm extends ActionForm {

	/**
	 * 
	 */
	private static final long serialVersionUID = -8098854962354914876L;

	private int indexId	= -1;
	private int parentId;
	private int type;
	private String name;
	private boolean isSearchable;
	private int listType;
	private boolean isActive;
	private String description;
	
	private FormFile fileIcon;
	private FormFile fileBanner;
	
	private String deletes;	// 删除列表,以';'隔开

	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		System.out.println("description=" + description);
		this.description = description; //Encoder.encodeJspParameter(description);
		System.out.println("this.description=" + this.description);
	}
	public int getIndexId() {
		return indexId;
	}
	public void setIndexId(int indexId) {
		this.indexId = indexId;
	}
	public boolean isActive() {
		return isActive;
	}
	public void setActive(boolean isActive) {
		this.isActive = isActive;
	}
	public boolean isSearchable() {
		return isSearchable;
	}
	public void setSearchable(boolean isSearchable) {
		this.isSearchable = isSearchable;
	}
	public int getListType() {
		return listType;
	}
	public void setListType(int listType) {
		this.listType = listType;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		System.out.println("name=" + name);
		this.name = name; //Encoder.encodeJspParameter(name);
		System.out.println("this.name=" + this.name);
	}
	public int getParentId() {
		return parentId;
	}
	public void setParentId(int parentId) {
		this.parentId = parentId;
	}
	public int getType() {
		return type;
	}
	public void setType(int type) {
		this.type = type;
	}
	public FormFile getFileBanner() {
		return fileBanner;
	}
	public void setFileBanner(FormFile fileBanner) {
		this.fileBanner = fileBanner;
	}
	public FormFile getFileIcon() {
		return fileIcon;
	}
	public void setFileIcon(FormFile fileIcon) {
		this.fileIcon = fileIcon;
	}
	public String getDeletes() {
		return deletes;
	}
	public void setDeletes(String deletes) {
		this.deletes = deletes;
	}
}

⌨️ 快捷键说明

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