www.pudn.com > GoogleSuggest.rar > GIndex.java


/* 
 * 创建日期 2006-3-5 
 * 
 * TODO 要更改此生成的文件的模板,请转至 
 * 窗口 - 首选项 - Java - 代码样式 - 代码模板 
 */ 
package cn.edu.bit.object; 
 
/** 
 * @author ligang 
 * 
 * TODO 要更改此生成的类型注释的模板,请转至 
 * 窗口 - 首选项 - Java - 代码样式 - 代码模板 
 */ 
public class GIndex { 
	 
	private int GID; 
	 
	private String GContent; 
	 
	public GIndex() 
	{ 
 
	} 
	 
	public GIndex(int id,String content) 
	{ 
		this.GID = id; 
		this.GContent = content; 
	} 
	 
	public void setID(int id) 
	{ 
		this.GID = id; 
	} 
	 
	public void setContent(String content) 
	{ 
		this.GContent = content; 
	} 
	 
	public int getID() 
	{ 
		return this.GID; 
	} 
	 
	public String getContent() 
	{ 
		return this.GContent; 
	} 
 
}