note.java

来自「这是一个简单的用B/S写的留言板小程序,用jsp和javaBean实现的」· Java 代码 · 共 42 行

JAVA
42
字号
package note1;
public class note
{
	private int id;
	private String title;
	private String author;
	private String content;
	
	public void setid(int id)
	{
		this.id=id;
	}
	public void settitle(String title)
	{
		this.title=title;
	}
	public void setauthor(String author)
	{
		this.author=author;
	}
	public void setcontent(String content)
	{
		this.content=content;
	}
	
	public int getid()
	{
		return this.id;
	}
	public String gettitle()
	{
		return this.title;
	}
	public String getauthor()
	{
		return this.author;
	}	
	public String getcontent()
	{
		return this.content;
	}
}

⌨️ 快捷键说明

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