1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kns.bo;
17
18
19 import java.util.LinkedHashMap;
20
21
22
23
24
25
26 public class AttributeReferenceElements extends PersistableBusinessObjectExtensionBase {
27 private static final long serialVersionUID = -7646503995716194181L;
28 private String infoTextArea;
29 private String extendedTextArea;
30
31
32
33
34
35
36 public AttributeReferenceElements() {
37 }
38
39
40
41
42 @SuppressWarnings("unchecked")
43 protected LinkedHashMap<String, Object> toStringMapper() {
44 LinkedHashMap m = new LinkedHashMap();
45
46 m.put("hashCode", Integer.toHexString(hashCode()));
47
48 return m;
49 }
50
51
52
53
54
55
56 public String getInfoTextArea() {
57 return infoTextArea;
58 }
59
60
61
62
63
64
65 public void setInfoTextArea(String infoTextArea) {
66 this.infoTextArea = infoTextArea;
67 }
68
69
70
71
72 public final String getExtendedTextArea() {
73 return this.extendedTextArea;
74 }
75
76
77
78
79 public final void setExtendedTextArea(String extendedTextArea) {
80 this.extendedTextArea = extendedTextArea;
81 }
82 }