1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.commons.betwixt.examples.rss;
20
21 import java.io.Serializable;
22
23
24 /***
25 * <p>Implementation object representing a <strong>textinput</strong> in the
26 * <em>Rich Site Summary</em> DTD, version 0.91. This class may be subclassed
27 * to further specialize its behavior.</p>
28 *
29 * <p>Based on the Jakarta Commons <code>Digester</code> implementation.</p>
30 *
31 * @author Craig R. McClanahan
32 * @version $Revision: 438373 $ $Date: 2006-08-30 06:17:21 +0100 (Wed, 30 Aug 2006) $
33 */
34
35 public class TextInput implements Serializable {
36
37
38
39
40
41 /***
42 * The text input description (1-100 characters).
43 */
44 protected String description = null;
45
46 public String getDescription() {
47 return (this.description);
48 }
49
50 public void setDescription(String description) {
51 this.description = description;
52 }
53
54
55 /***
56 * The text input link (1-500 characters).
57 */
58 protected String link = null;
59
60 public String getLink() {
61 return (this.link);
62 }
63
64 public void setLink(String link) {
65 this.link = link;
66 }
67
68
69 /***
70 * The text input field name (1-100 characters).
71 */
72 protected String name = null;
73
74 public String getName() {
75 return (this.name);
76 }
77
78 public void setName(String name) {
79 this.name = name;
80 }
81
82
83 /***
84 * The text input submit button label (1-100 characters).
85 */
86 protected String title = null;
87
88 public String getTitle() {
89 return (this.title);
90 }
91
92 public void setTitle(String title) {
93 this.title = title;
94 }
95 }