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

📄 addedbcevt.java

📁 基于jxta的文件共享和聊天系统源代码,下载下来分析吧
💻 JAVA
字号:
/* * Created on 8-dic-2005 * */package p2p_system;import java.util.EventObject;/** * @author magowiz * */public class AddedBCEvt extends EventObject {		private String cname;	private String status;	private String clabel;	private boolean error;		public AddedBCEvt(Object source,String cl,String s)	{		super(source);		this.clabel=new String(cl);		this.status=new String(s);		this.cname="";		error=false;	}		public AddedBCEvt(Object source,String cl,String s,boolean e)	{		super(source);		this.clabel=new String(cl);		this.status=new String(s);		this.cname="";		error=e;	}		public AddedBCEvt(Object source,String cl,String cn,String s)	{		super(source);		this.clabel=new String(cl);		this.cname=new String(cn);		this.status=new String(s);		error=false;	}		public AddedBCEvt(Object source,String cl,String cn,String s,boolean e)	{		super(source);		this.clabel=new String(cl);		this.cname=new String(cn);		this.status=new String(s);		error=e;	} 		public boolean isError()	{		return this.error;	}		public String getCatalogLabel()	{		return this.clabel;	}		public String getCatalogName()	{		return this.cname;	}		public String getStatus()	{		return this.status;	}}

⌨️ 快捷键说明

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