Coverage Report - org.kuali.rice.kns.datadictionary.exporter.CollectionsMapBuilder
 
Classes in this File Line Coverage Branch Coverage Complexity
CollectionsMapBuilder
0%
0/15
0%
0/6
2
 
 1  
 /*
 2  
  * Copyright 2005-2007 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.datadictionary.exporter;
 17  
 
 18  
 import org.kuali.rice.kns.datadictionary.CollectionDefinition;
 19  
 import org.kuali.rice.kns.datadictionary.DataDictionaryEntryBase;
 20  
 
 21  
 /**
 22  
  * CollectionsMapBuilder
 23  
  * 
 24  
  * 
 25  
  */
 26  
 public class CollectionsMapBuilder {
 27  
 
 28  
     /**
 29  
      * Default constructor
 30  
      */
 31  0
     public CollectionsMapBuilder() {
 32  0
     }
 33  
 
 34  
 
 35  
     /**
 36  
      * @param entry
 37  
      * @return ExportMap containing the standard entries for the entry's CollectionsDefinition
 38  
      */
 39  
     public ExportMap buildCollectionsMap(DataDictionaryEntryBase entry) {
 40  0
         ExportMap collectionsMap = new ExportMap("collections");
 41  
 
 42  0
         for ( CollectionDefinition collection : entry.getCollections() ) {
 43  0
             collectionsMap.set(buildCollectionMap(collection));
 44  
         }
 45  
 
 46  0
         return collectionsMap;
 47  
     }
 48  
 
 49  
     private ExportMap buildCollectionMap(CollectionDefinition collection) {
 50  0
         ExportMap collectionMap = new ExportMap(collection.getName());
 51  
 
 52  0
         collectionMap.set("name", collection.getName());
 53  0
         collectionMap.set("label", collection.getLabel());
 54  0
         collectionMap.set("shortLabel", collection.getShortLabel());
 55  0
         if (collection.getSummary() != null) {
 56  0
             collectionMap.set("summary", collection.getSummary());
 57  
         }
 58  0
         if (collection.getDescription() != null) {
 59  0
             collectionMap.set("description", collection.getDescription());
 60  
         }
 61  
 
 62  0
         return collectionMap;
 63  
     }
 64  
 
 65  
 }