Coverage Report - org.trails.engine.SqueezableTrailsPagesServiceParameter
 
Classes in this File Line Coverage Branch Coverage Complexity
SqueezableTrailsPagesServiceParameter
0% 
N/A 
1
 
 1  
 package org.trails.engine;
 2  
 
 3  
 import java.io.Serializable;
 4  
 
 5  
 public class SqueezableTrailsPagesServiceParameter implements Serializable
 6  
 {
 7  
 
 8  
         private String pageType;
 9  
         private String classDescriptor;
 10  
         private String model;
 11  
         private String assoc;
 12  
         private String parent;
 13  
 
 14  0
         public SqueezableTrailsPagesServiceParameter(String pageType, String classDescriptor, String model, String assoc, String parent)
 15  
         {
 16  0
                 this.pageType = pageType;
 17  0
                 this.classDescriptor = classDescriptor;
 18  0
                 this.model = model;
 19  0
                 this.assoc = assoc;
 20  0
                 this.parent = parent;
 21  0
         }
 22  
 
 23  
         public String getPageType()
 24  
         {
 25  0
                 return pageType;
 26  
         }
 27  
 
 28  
         public void setPageType(String pageType)
 29  
         {
 30  0
                 this.pageType = pageType;
 31  0
         }
 32  
 
 33  
         public String getClassDescriptor()
 34  
         {
 35  0
                 return classDescriptor;
 36  
         }
 37  
 
 38  
         public void setClassDescriptor(String classDescriptor)
 39  
         {
 40  0
                 this.classDescriptor = classDescriptor;
 41  0
         }
 42  
 
 43  
         public String getModel()
 44  
         {
 45  0
                 return model;
 46  
         }
 47  
 
 48  
         public void setModel(String model)
 49  
         {
 50  0
                 this.model = model;
 51  0
         }
 52  
 
 53  
         public String getAssoc()
 54  
         {
 55  0
                 return assoc;
 56  
         }
 57  
 
 58  
         public void setAssoc(String assoc)
 59  
         {
 60  0
                 this.assoc = assoc;
 61  0
         }
 62  
 
 63  
         public String getParent()
 64  
         {
 65  0
                 return parent;
 66  
         }
 67  
 
 68  
         public void setParent(String parent)
 69  
         {
 70  0
                 this.parent = parent;
 71  0
         }
 72  
 }