📄 searchevt.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 + -