1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package org.mwolff.struts.back;
24
25 /***
26 *
27 * @since 1.0
28 * @author <a href="mailto:wolff@mwolff.org">Manfred Wolff </a>
29 */
30 public class ArrayEntry {
31
32 /***
33 * Default Contructor.
34 */
35 public ArrayEntry() {
36 super();
37 }
38
39 /***
40 * Constructor with value.
41 * @param value The value to be set.
42 */
43 public ArrayEntry(final Object value) {
44 this.value = value;
45 }
46
47 /*** The value of the entry. */
48 private Object value;
49
50 /***
51 * Gets the value of the entry.
52 * @return The value of the entry.
53 */
54 public final Object getValue() {
55 return value;
56 }
57
58 /***
59 * Sets the value of the entry.
60 * @param value The value of the entry.
61 */
62 public final void setValue(final Object value) {
63 this.value = value;
64 }
65 }