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

📄 newarticleform.java

📁 myeclipse下mysql-struts-hibernate-tomcat一个BBS 应用
💻 JAVA
字号:
package j2eebbs.user.form;

import org.apache.struts.action.ActionForm;

/**
 * <strong>UserInsertForm </strong> handles the form that the user will use to
 * insert a new user into the database.
 */

public final class NewArticleForm extends ActionForm {

    /**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	private String title;
    
    private String content;

    /**
     * @return Returns the content.
     */
    public String getContent() {
        return content;
    }
    /**
     * @param content The content to set.
     */
    public void setContent(String content) {
        this.content = content;
    }
    /**
     * @return Returns the title.
     */
    public String getTitle() {
        return title;
    }
    /**
     * @param title The title to set.
     */
    public void setTitle(String title) {
        this.title = title;
    }
}

⌨️ 快捷键说明

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