| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AttributeReferenceElements |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Copyright 2005-2008 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.kns.bo; | |
| 17 | ||
| 18 | ||
| 19 | import java.util.LinkedHashMap; | |
| 20 | ||
| 21 | ||
| 22 | ||
| 23 | /** | |
| 24 | * Attribute Reference Dummy Business Object | |
| 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 | * Constructs a AttributeReferenceDummy.java. | |
| 34 | * | |
| 35 | */ | |
| 36 | 0 | public AttributeReferenceElements() { |
| 37 | 0 | } |
| 38 | ||
| 39 | /** | |
| 40 | * @see org.kuali.rice.kns.bo.BusinessObjectBase#toStringMapper() | |
| 41 | */ | |
| 42 | @SuppressWarnings("unchecked") | |
| 43 | protected LinkedHashMap<String, Object> toStringMapper() { | |
| 44 | 0 | LinkedHashMap m = new LinkedHashMap(); |
| 45 | ||
| 46 | 0 | m.put("hashCode", Integer.toHexString(hashCode())); |
| 47 | ||
| 48 | 0 | return m; |
| 49 | } | |
| 50 | ||
| 51 | /** | |
| 52 | * Gets the infoTextArea attribute. | |
| 53 | * | |
| 54 | * @return Returns the infoTextArea. | |
| 55 | */ | |
| 56 | public String getInfoTextArea() { | |
| 57 | 0 | return infoTextArea; |
| 58 | } | |
| 59 | ||
| 60 | /** | |
| 61 | * Sets the infoTextArea attribute value. | |
| 62 | * | |
| 63 | * @param infoTextArea The infoTextArea to set. | |
| 64 | */ | |
| 65 | public void setInfoTextArea(String infoTextArea) { | |
| 66 | 0 | this.infoTextArea = infoTextArea; |
| 67 | 0 | } |
| 68 | ||
| 69 | /** | |
| 70 | * @return the extendedTextArea | |
| 71 | */ | |
| 72 | public final String getExtendedTextArea() { | |
| 73 | 0 | return this.extendedTextArea; |
| 74 | } | |
| 75 | ||
| 76 | /** | |
| 77 | * @param extendedTextArea the extendedTextArea to set | |
| 78 | */ | |
| 79 | public final void setExtendedTextArea(String extendedTextArea) { | |
| 80 | 0 | this.extendedTextArea = extendedTextArea; |
| 81 | 0 | } |
| 82 | } |