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

📄 localcatalogentry.java

📁 基于jxta的文件共享和聊天系统源代码,下载下来分析吧
💻 JAVA
字号:
package local_catalog_manager;import java.net.URL;public class LocalCatalogEntry {	private URL url;	private String title;	private String description;	private String hash;		public LocalCatalogEntry(String t,String d, URL u)		{			title=t;			description=d;			url=u;			hash=null;		}	public LocalCatalogEntry(String t,String d, URL u,String h)	{		title=t;		description=d;		url=u;		hash=h;	}			/**	 * @return the hash	 */	public String getHash() {		return hash;	}	/**	 * @param hash the hash to set	 */	public void setHash(String hash) {		this.hash = hash;	}	/**	 * @return the description	 */	public String getDescription() {		return description;	}	/**	 * @return the title	 */	public String getTitle() {		return title;	}	/**	 * @return the url	 */	public URL getUrl() {		return url;	}	}

⌨️ 快捷键说明

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