1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package com.sun.syndication.feed.rss;
18
19 import com.sun.syndication.common.ObjectBean;
20
21 /***
22 * Bean for text input of RSS feeds.
23 * <p>
24 * @author Alejandro Abdelnur
25 *
26 */
27 public class TextInput extends ObjectBean {
28 private String _title;
29 private String _description;
30 private String _name;
31 private String _link;
32
33 /***
34 * Default constructor. All properties are set to <b>null</b>.
35 * <p>
36 *
37 */
38 public TextInput() {
39 }
40
41 /***
42 * Returns the text input title.
43 * <p>
44 * @return the text input title, <b>null</b> if none.
45 *
46 */
47 public String getTitle() {
48 return _title;
49 }
50
51 /***
52 * Sets the text input title.
53 * <p>
54 * @param title the text input title to set, <b>null</b> if none.
55 *
56 */
57 public void setTitle(String title) {
58 _title = title;
59 }
60
61 /***
62 * Returns the text input description.
63 * <p>
64 * @return the text input description, <b>null</b> if none.
65 *
66 */
67 public String getDescription() {
68 return _description;
69 }
70
71 /***
72 * Sets the text input description.
73 * <p>
74 * @param description the text input description to set, <b>null</b> if none.
75 *
76 */
77 public void setDescription(String description) {
78 _description = description;
79 }
80
81 /***
82 * Returns the text input name.
83 * <p>
84 * @return the text input name, <b>null</b> if none.
85 *
86 */
87 public String getName() {
88 return _name;
89 }
90
91 /***
92 * Sets the text input name.
93 * <p>
94 * @param name the text input name to set, <b>null</b> if none.
95 *
96 */
97 public void setName(String name) {
98 _name = name;
99 }
100
101 /***
102 * Returns the text input link.
103 * <p>
104 * @return the text input link, <b>null</b> if none.
105 *
106 */
107 public String getLink() {
108 return _link;
109 }
110
111 /***
112 * Sets the text input link.
113 * <p>
114 * @param link the text input link to set, <b>null</b> if none.
115 *
116 */
117 public void setLink(String link) {
118 _link = link;
119 }
120
121 }