Coverage Report - org.kuali.student.lum.program.client.ProgramSections
 
Classes in this File Line Coverage Branch Coverage Complexity
ProgramSections
0%
0/34
N/A
1
 
 1  
 package org.kuali.student.lum.program.client;
 2  
 
 3  
 import java.util.ArrayList;
 4  
 import java.util.HashMap;
 5  
 
 6  
 import org.kuali.student.lum.program.client.requirements.ProgramRequirementsViewController;
 7  
 
 8  
 /**
 9  
  * Program section's identifiers.
 10  
  *
 11  
  * @author Igor
 12  
  */
 13  0
 public enum ProgramSections {
 14  0
     PROGRAM_DETAILS_VIEW,
 15  0
     PROGRAM_DETAILS_EDIT,
 16  0
     SPECIALIZATIONS_VIEW,
 17  0
     SPECIALIZATIONS_EDIT,
 18  0
     PROGRAM_REQUIREMENTS_VIEW,
 19  0
     PROGRAM_REQUIREMENTS_EDIT,
 20  0
     MANAGE_BODIES_VIEW,
 21  0
     MANAGE_BODIES_EDIT,
 22  0
     CATALOG_INFO_VIEW,
 23  0
     CATALOG_INFO_EDIT,
 24  0
     LEARNING_OBJECTIVES_VIEW,
 25  0
     LEARNING_OBJECTIVES_EDIT,
 26  0
     SUPPORTING_DOCUMENTS_VIEW,
 27  0
     SUPPORTING_DOCUMENTS_EDIT,
 28  0
     VIEW_ALL,
 29  0
     SUMMARY,
 30  0
     COMMENTS,
 31  0
     EMPTY;
 32  
 
 33  0
     private static HashMap<Enum<?>, Enum<?>> sectionMap = new HashMap<Enum<?>, Enum<?>>();
 34  
 
 35  0
     private static ArrayList<String> viewForUpdate = new ArrayList<String>();
 36  
 
 37  
     static{
 38  0
         viewForUpdate.add(SPECIALIZATIONS_EDIT.name());
 39  0
         viewForUpdate.add(MANAGE_BODIES_EDIT.name());
 40  0
         viewForUpdate.add(LEARNING_OBJECTIVES_EDIT.name());
 41  
     }
 42  
 
 43  
     static {
 44  0
         sectionMap.put(PROGRAM_DETAILS_VIEW, PROGRAM_DETAILS_EDIT);
 45  0
         sectionMap.put(SPECIALIZATIONS_VIEW, SPECIALIZATIONS_EDIT);
 46  0
         sectionMap.put(ProgramRequirementsViewController.ProgramRequirementsViews.PREVIEW, PROGRAM_REQUIREMENTS_EDIT);
 47  0
         sectionMap.put(MANAGE_BODIES_VIEW, MANAGE_BODIES_EDIT);
 48  0
         sectionMap.put(CATALOG_INFO_VIEW, CATALOG_INFO_EDIT);
 49  0
         sectionMap.put(LEARNING_OBJECTIVES_VIEW, LEARNING_OBJECTIVES_EDIT);
 50  0
         sectionMap.put(SUPPORTING_DOCUMENTS_VIEW, SUPPORTING_DOCUMENTS_EDIT);
 51  0
     }
 52  
 
 53  
     public static Enum<?> getEditSection(Enum<?> viewSection) {
 54  0
         return sectionMap.get(viewSection);
 55  
     }
 56  
 
 57  
     public static ArrayList<String> getViewForUpdate() {
 58  0
         return viewForUpdate;
 59  
     }
 60  
 }