⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 oneform.java

📁 开发论坛的java源程序
💻 JAVA
字号:
package com.jspdev.One;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.*;

public class OneForm extends ActionForm
{
     public String title;  //标题
     public String author;  //作者
     public String email;    //电子邮件
     public String content;   //内容
     
     public void setTitle(String title){  this.title=title; }
     public String getTltle(){ return this.title; }
     public void setAuthor(String author) { this.author=author; }
     public String getAuthor(){ return this.author; }
     public void setEmail(String email){ this.email=email; }
     public String getEamil(){return this.email;}
     public void setContent(String content){this.content=content;}
     public String getContent(){return content;}
     
     //重置Form;
     public void reset(ActionMapping mapping,HttpServletRequest request)
     {
    	 this.title=null;
    	 this.author=null;
    	 this.email=null;
    	 this.content=null;
     }
}

⌨️ 快捷键说明

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