newsform.java

来自「jsp学习交流网」· Java 代码 · 共 28 行

JAVA
28
字号
package cfq.struts.actionform;

import org.apache.struts.action.ActionForm;

public class NewsForm extends ActionForm {
	
	private String newstitle;
	
	private String newstontent;

	public String getNewstitle() {
		return newstitle;
	}

	public void setNewstitle(String newstitle) {
		this.newstitle = newstitle;
	}

	public String getNewstontent() {
		return newstontent;
	}

	public void setNewstontent(String newstontent) {
		this.newstontent = newstontent;
	}

}

⌨️ 快捷键说明

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