?? searchresult.java
字號:
package ajaxdashboard.domain;public class SearchResult { private String title = ""; private String url = ""; private String summary = ""; public String getTitle() { return title; } public void setTitle(String title) { this.title = title.replaceAll("&", "&"); this.title = this.title.replaceAll("\"", "'"); } public String getUrl() { return url; } public void setUrl(String url) { this.url = url.replaceAll("&", "&"); this.url = this.url.replaceAll("\"", """); } public String getSummary() { return summary; } public void setSummary(String summary) { this.summary = summary.replaceAll("&", "&"); this.summary = this.summary.replaceAll("\"", """); } public String toString() { StringBuffer buf = new StringBuffer(); buf.append("Title: " + title) .append("\nURL: " + url) .append("\nSummary: " + summary); return buf.toString(); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -