?? addblogform.java
字號:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.icome.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: 12-17-2006
*
* XDoclet definition:
* @struts.form name="addBlogForm"
*/
public class AddBlogForm extends ActionForm {
/*
* Generated fields
*/
/** categoryRadio property */
private Integer categoryRadio = 0;
/** summery property */
private String summery;
/** categoryInput property */
private String categoryInput;
/** title property */
private String title;
/** content property */
private String content;
/** categoryfixed property */
private String categoryfixed;
/*
* 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 categoryRadio.
* @return Integer
*/
public Integer getCategoryRadio() {
return categoryRadio;
}
/**
* Set the categoryRadio.
* @param categoryRadio The categoryRadio to set
*/
public void setCategoryRadio(Integer categoryRadio) {
this.categoryRadio = categoryRadio;
}
/**
* Returns the summery.
* @return String
*/
public String getSummery() {
return summery;
}
/**
* Set the summery.
* @param summery The summery to set
*/
public void setSummery(String summery) {
this.summery = summery;
}
/**
* Returns the categoryInput.
* @return String
*/
public String getCategoryInput() {
return categoryInput;
}
/**
* Set the categoryInput.
* @param categoryInput The categoryInput to set
*/
public void setCategoryInput(String categoryInput) {
this.categoryInput = categoryInput;
}
/**
* Returns the title.
* @return String
*/
public String getTitle() {
return title;
}
/**
* Set the title.
* @param title The title to set
*/
public void setTitle(String title) {
this.title = title;
}
/**
* Returns the content.
* @return String
*/
public String getContent() {
return content;
}
/**
* Set the content.
* @param content The content to set
*/
public void setContent(String content) {
this.content = content;
}
/**
* Returns the categoryfixed.
* @return String
*/
public String getCategoryfixed() {
return categoryfixed;
}
/**
* Set the categoryfixed.
* @param categoryfixed The categoryfixed to set
*/
public void setCategoryfixed(String categoryfixed) {
this.categoryfixed = categoryfixed;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -