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

📄 searchevt.java

📁 基于jxta的文件共享和聊天系统源代码,下载下来分析吧
💻 JAVA
字号:
package p2p_system;import java.util.EventObject;public class SearchEvt extends EventObject {	private String title=null;	private String description=null;	private String[] catalogs=null;	private boolean othweb,othpeer,loccat;		public SearchEvt(Object source,String t, String d,String [] c,boolean ow,boolean op,boolean lc)	{		super(source);		this.title=t;		this.description=d;		this.catalogs=c;		this.othpeer=op;		this.othweb=ow;		this.loccat=lc;			}		public String getTitle()	{		return this.title;	}		public String getDescription()	{		return this.description;	}	public String [] getCatalogs()	{		return this.catalogs;	}	/**	 * @return the loccat	 */	public boolean isLoccat() {		return loccat;	}	/**	 * @return the othpeer	 */	public boolean isOthpeer() {		return othpeer;	}	/**	 * @return the othweb	 */	public boolean isOthweb() {		return othweb;	}}

⌨️ 快捷键说明

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