1 16 17 18 package org.apache.commons.digester.rss; 19 20 import java.io.PrintWriter ; 21 import java.io.Serializable ; 22 23 24 29 30 public class Image implements Serializable { 31 32 33 35 36 39 protected String description = null; 40 41 public String getDescription() { 42 return (this.description); 43 } 44 45 public void setDescription(String description) { 46 this.description = description; 47 } 48 49 50 53 protected int height = 31; 54 55 public int getHeight() { 56 return (this.height); 57 } 58 59 public void setHeight(int height) { 60 this.height = height; 61 } 62 63 64 67 protected String link = null; 68 69 public String getLink() { 70 return (this.link); 71 } 72 73 public void setLink(String link) { 74 this.link = link; 75 } 76 77 78 81 protected String title = null; 82 83 public String getTitle() { 84 return (this.title); 85 } 86 87 public void setTitle(String title) { 88 this.title = title; 89 } 90 91 92 95 protected String url = null; 96 97 public String getURL() { 98 return (this.url); 99 } 100 101 public void setURL(String url) { 102 this.url = url; 103 } 104 105 106 109 protected int width = 31; 110 111 public int getWidth() { 112 return (this.width); 113 } 114 115 public void setWidth(int width) { 116 this.width = width; 117 } 118 119 120 122 123 129 void render(PrintWriter writer) { 130 131 writer.println(" <image>"); 132 133 writer.print(" <title>"); 134 writer.print(title); 135 writer.println("</title>"); 136 137 writer.print(" <url>"); 138 writer.print(url); 139 writer.println("</url>"); 140 141 if (link != null) { 142 writer.print(" <link>"); 143 writer.print(link); 144 writer.println("</link>"); 145 } 146 147 writer.print(" <width>"); 148 writer.print(width); 149 writer.println("</width>"); 150 151 writer.print(" <height>"); 152 writer.print(height); 153 writer.println("</height>"); 154 155 if (description != null) { 156 writer.print(" <description>"); 157 writer.print(description); 158 writer.println("</description>"); 159 } 160 161 writer.println(" </image>"); 162 163 } 164 165 166 } 167 | Popular Tags |