Coverage Report - org.kuali.rice.kns.bo.BusinessObjectAttributeEntry
 
Classes in this File Line Coverage Branch Coverage Complexity
BusinessObjectAttributeEntry
0%
0/35
N/A
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  
 import java.util.LinkedHashMap;
 19  
 
 20  
 /**
 21  
  * Business Object Attribute Entry Business Object
 22  
  * 
 23  
  * 
 24  
  */
 25  0
 public class BusinessObjectAttributeEntry extends PersistableBusinessObjectBase {
 26  
 
 27  
     private static final long serialVersionUID = 8136616401437024033L;
 28  
     private String dictionaryBusinessObjectName;
 29  
     private String attributeName;
 30  
     private String attributeLabel;
 31  
     private String attributeShortLabel;
 32  
     private String attributeMaxLength;
 33  
     private String attributeValidatingExpression;
 34  
     private String attributeControlType;
 35  
     private String attributeSummary;
 36  
     private String attributeDescription;
 37  
     private String attributeFormatterClassName;
 38  
 
 39  
 
 40  
     /**
 41  
      * @return Returns the attributeControlType.
 42  
      */
 43  
     public String getAttributeControlType() {
 44  0
         return attributeControlType;
 45  
     }
 46  
 
 47  
     /**
 48  
      * @param attributeControlType The attributeControlType to set.
 49  
      */
 50  
     public void setAttributeControlType(String attributeControlType) {
 51  0
         this.attributeControlType = attributeControlType;
 52  0
     }
 53  
 
 54  
     /**
 55  
      * @return Returns the attributeDescription.
 56  
      */
 57  
     public String getAttributeDescription() {
 58  0
         return attributeDescription;
 59  
     }
 60  
 
 61  
     /**
 62  
      * @param attributeDescription The attributeDescription to set.
 63  
      */
 64  
     public void setAttributeDescription(String attributeDescription) {
 65  0
         this.attributeDescription = attributeDescription;
 66  0
     }
 67  
 
 68  
     /**
 69  
      * @return Returns the attributeFormatterClassName.
 70  
      */
 71  
     public String getAttributeFormatterClassName() {
 72  0
         return attributeFormatterClassName;
 73  
     }
 74  
 
 75  
     /**
 76  
      * @param attributeFormatterClassName The attributeFormatterClassName to set.
 77  
      */
 78  
     public void setAttributeFormatterClassName(String attributeFormatterClassName) {
 79  0
         this.attributeFormatterClassName = attributeFormatterClassName;
 80  0
     }
 81  
 
 82  
     /**
 83  
      * @return Returns the attributeLabel.
 84  
      */
 85  
     public String getAttributeLabel() {
 86  0
         return attributeLabel;
 87  
     }
 88  
 
 89  
     /**
 90  
      * @param attributeLabel The attributeLabel to set.
 91  
      */
 92  
     public void setAttributeLabel(String attributeLabel) {
 93  0
         this.attributeLabel = attributeLabel;
 94  0
     }
 95  
 
 96  
     /**
 97  
      * @return Returns the attributeMaxLength.
 98  
      */
 99  
     public String getAttributeMaxLength() {
 100  0
         return attributeMaxLength;
 101  
     }
 102  
 
 103  
     /**
 104  
      * @param attributeMaxLength The attributeMaxLength to set.
 105  
      */
 106  
     public void setAttributeMaxLength(String attributeMaxLength) {
 107  0
         this.attributeMaxLength = attributeMaxLength;
 108  0
     }
 109  
 
 110  
     /**
 111  
      * @return Returns the attributeName.
 112  
      */
 113  
     public String getAttributeName() {
 114  0
         return attributeName;
 115  
     }
 116  
 
 117  
     /**
 118  
      * @param attributeName The attributeName to set.
 119  
      */
 120  
     public void setAttributeName(String attributeName) {
 121  0
         this.attributeName = attributeName;
 122  0
     }
 123  
 
 124  
     /**
 125  
      * @return Returns the attributeShortLabel.
 126  
      */
 127  
     public String getAttributeShortLabel() {
 128  0
         return attributeShortLabel;
 129  
     }
 130  
 
 131  
     /**
 132  
      * @param attributeShortLabel The attributeShortLabel to set.
 133  
      */
 134  
     public void setAttributeShortLabel(String attributeShortLabel) {
 135  0
         this.attributeShortLabel = attributeShortLabel;
 136  0
     }
 137  
 
 138  
     /**
 139  
      * @return Returns the attributeSummary.
 140  
      */
 141  
     public String getAttributeSummary() {
 142  0
         return attributeSummary;
 143  
     }
 144  
 
 145  
     /**
 146  
      * @param attributeSummary The attributeSummary to set.
 147  
      */
 148  
     public void setAttributeSummary(String attributeSummary) {
 149  0
         this.attributeSummary = attributeSummary;
 150  0
     }
 151  
 
 152  
     /**
 153  
      * @return Returns the attributeValidatingExpression.
 154  
      */
 155  
     public String getAttributeValidatingExpression() {
 156  0
         return attributeValidatingExpression;
 157  
     }
 158  
 
 159  
     /**
 160  
      * @param attributeValidatingExpression The attributeValidatingExpression to set.
 161  
      */
 162  
     public void setAttributeValidatingExpression(String attributeValidatingExpression) {
 163  0
         this.attributeValidatingExpression = attributeValidatingExpression;
 164  0
     }
 165  
 
 166  
     /**
 167  
      * @return Returns the businessObjectClass.
 168  
      */
 169  
     public String getDictionaryBusinessObjectName() {
 170  0
         return dictionaryBusinessObjectName;
 171  
     }
 172  
 
 173  
     /**
 174  
      * @param businessObjectClass The businessObjectClass to set.
 175  
      */
 176  
     public void setDictionaryBusinessObjectName(String businessObjectClass) {
 177  0
         this.dictionaryBusinessObjectName = businessObjectClass;
 178  0
     }
 179  
 
 180  
     /**
 181  
      * @see org.kuali.rice.kns.bo.BusinessObjectBase#toStringMapper()
 182  
      */
 183  
     protected LinkedHashMap toStringMapper() {
 184  0
         LinkedHashMap m = new LinkedHashMap();
 185  
 
 186  0
         m.put("dictionaryBusinessObjectName", getDictionaryBusinessObjectName());
 187  0
         m.put("attributeName", getAttributeName());
 188  
 
 189  0
         return m;
 190  
     }
 191  
 }