1 16 17 18 package org.apache.commons.betwixt.examples.rss; 19 20 import java.io.Serializable ; 21 22 23 33 34 public class TextInput implements Serializable { 35 36 37 39 40 43 protected String description = null; 44 45 public String getDescription() { 46 return (this.description); 47 } 48 49 public void setDescription(String description) { 50 this.description = description; 51 } 52 53 54 57 protected String link = null; 58 59 public String getLink() { 60 return (this.link); 61 } 62 63 public void setLink(String link) { 64 this.link = link; 65 } 66 67 68 71 protected String name = null; 72 73 public String getName() { 74 return (this.name); 75 } 76 77 public void setName(String name) { 78 this.name = name; 79 } 80 81 82 85 protected String title = null; 86 87 public String getTitle() { 88 return (this.title); 89 } 90 91 public void setTitle(String title) { 92 this.title = title; 93 } 94 } 95 | Popular Tags |