1 /**
2 * Copyright 2005-2012 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.kuali.rice.krad.bo;
17
18
19 /**
20 * Attribute Reference Dummy Business Object
21 */
22 public class AttributeReferenceElements extends PersistableBusinessObjectExtensionBase {
23 private static final long serialVersionUID = -7646503995716194181L;
24 private String infoTextArea;
25 private String extendedTextArea;
26
27 /**
28 *
29 * Constructs a AttributeReferenceDummy.java.
30 *
31 */
32 public AttributeReferenceElements() {
33 }
34
35 /**
36 * Gets the infoTextArea attribute.
37 *
38 * @return Returns the infoTextArea.
39 */
40 public String getInfoTextArea() {
41 return infoTextArea;
42 }
43
44 /**
45 * Sets the infoTextArea attribute value.
46 *
47 * @param infoTextArea The infoTextArea to set.
48 */
49 public void setInfoTextArea(String infoTextArea) {
50 this.infoTextArea = infoTextArea;
51 }
52
53 /**
54 * @return the extendedTextArea
55 */
56 public final String getExtendedTextArea() {
57 return this.extendedTextArea;
58 }
59
60 /**
61 * @param extendedTextArea the extendedTextArea to set
62 */
63 public final void setExtendedTextArea(String extendedTextArea) {
64 this.extendedTextArea = extendedTextArea;
65 }
66 }