SearchResult.java
上传用户:shen332233
上传日期:2021-09-03
资源大小:7478k
文件大小:1k
源码类别:

Ajax

开发平台:

Java

  1. package ajaxdashboard.domain;
  2. public class SearchResult {
  3.     private String title = "";
  4.     private String url = "";
  5.     private String summary = "";
  6.     public String getTitle() {
  7.         return title;
  8.     }
  9.     public void setTitle(String title) {
  10.         this.title = title.replaceAll("&", "&");
  11.         this.title = this.title.replaceAll(""", "'");
  12.     }
  13.     public String getUrl() {
  14.         return url;
  15.     }
  16.     public void setUrl(String url) {
  17.         this.url = url.replaceAll("&", "&");
  18.         this.url = this.url.replaceAll(""", """);
  19.     }
  20.     public String getSummary() {
  21.         return summary;
  22.     }
  23.     public void setSummary(String summary) {
  24.         this.summary = summary.replaceAll("&", "&");
  25.         this.summary = this.summary.replaceAll(""", """);
  26.     }
  27.     
  28.     public String toString() {
  29.         StringBuffer buf = new StringBuffer();
  30.         buf.append("Title: " + title)
  31.             .append("nURL: " + url)
  32.             .append("nSummary: " + summary);
  33.         
  34.         return buf.toString();
  35.     }
  36. }