001    /**
002     * Copyright 2005-2012 The Kuali Foundation
003     *
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     * http://www.opensource.org/licenses/ecl2.php
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.rice.krad.bo;
017    
018    
019    /**
020     * Attribute Reference Dummy Business Object
021     */
022    public class AttributeReferenceElements extends PersistableBusinessObjectExtensionBase {
023        private static final long serialVersionUID = -7646503995716194181L;
024        private String infoTextArea;
025        private String extendedTextArea;
026    
027        /**
028         * 
029         * Constructs a AttributeReferenceDummy.java.
030         * 
031         */
032        public AttributeReferenceElements() {
033        }
034    
035        /**
036         * Gets the infoTextArea attribute.
037         * 
038         * @return Returns the infoTextArea.
039         */
040        public String getInfoTextArea() {
041            return infoTextArea;
042        }
043    
044        /**
045         * Sets the infoTextArea attribute value.
046         * 
047         * @param infoTextArea The infoTextArea to set.
048         */
049        public void setInfoTextArea(String infoTextArea) {
050            this.infoTextArea = infoTextArea;
051        }
052    
053        /**
054         * @return the extendedTextArea
055         */
056        public final String getExtendedTextArea() {
057            return this.extendedTextArea;
058        }
059    
060        /**
061         * @param extendedTextArea the extendedTextArea to set
062         */
063        public final void setExtendedTextArea(String extendedTextArea) {
064            this.extendedTextArea = extendedTextArea;
065        }
066    }