revertguestinfoform.java

来自「留言簿架构 oracle 9i + jsp + struts 留言」· Java 代码 · 共 30 行

JAVA
30
字号
package com.guestbook.form;

import org.apache.struts.action.*;

import javax.servlet.http.*;

public class RevertGuestInfoForm extends ActionForm
{
	private int id;
	private String guestReply;
	
	public int getId()
	{
		return this.id;
	}
	public void setId( int id )
	{
		this.id = id;
	}

	public String getGuestReply()
	{
		return this.guestReply;
	}
	public void setGuestReply( String guestReply )
	{
		this.guestReply = guestReply;
	}	
}

⌨️ 快捷键说明

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