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