📄 codemngform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package cn.edu.ujn.srms.struts.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* MyEclipse Struts
* Creation date: 10-12-2007
*
* XDoclet definition:
* @struts.form name="codeMngForm"
*/
public class CodeMngForm extends ActionForm {
/*
* Generated fields
*/
/** level property */
private String level;
/** code property */
private String code;
/** node property */
private String node;
/** parentid property */
private String parentid;
/** note property */
private String note;
/** name property */
private String name;
/** id property */
private String id;
/** squenceno property */
private String sequenceNo;
/*
* Generated Methods
*/
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
/**
* Returns the level.
* @return String
*/
public String getLevel() {
return level;
}
/**
* Set the level.
* @param level The level to set
*/
public void setLevel(String level) {
this.level = level;
}
/**
* Returns the code.
* @return String
*/
public String getCode() {
return code;
}
/**
* Set the code.
* @param code The code to set
*/
public void setCode(String code) {
this.code = code;
}
/**
* Returns the node.
* @return String
*/
public String getNode() {
return node;
}
/**
* Set the node.
* @param node The node to set
*/
public void setNode(String node) {
this.node = node;
}
/**
* Returns the parentid.
* @return String
*/
public String getParentid() {
return parentid;
}
/**
* Set the parentid.
* @param parentid The parentid to set
*/
public void setParentid(String parentid) {
this.parentid = parentid;
}
/**
* Returns the note.
* @return String
*/
public String getNote() {
return note;
}
/**
* Set the note.
* @param note The note to set
*/
public void setNote(String note) {
this.note = note;
}
/**
* Returns the name.
* @return String
*/
public String getName() {
return name;
}
/**
* Set the name.
* @param name The name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* Returns the id.
* @return String
*/
public String getId() {
return id;
}
/**
* Set the id.
* @param id The id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* Returns the squenceno.
* @return String
*/
public String getSequenceNo() {
return sequenceNo;
}
/**
* Set the squenceno.
* @param squenceno The squenceno to set
*/
public void setSequenceNo(String sequenceNo) {
this.sequenceNo = sequenceNo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -