Coverage Report - org.restafarian.core.beans.LookupTableProperty
 
Classes in this File Line Coverage Branch Coverage Complexity
LookupTableProperty
0%
0/49
N/A
1
 
 1  
 package org.restafarian.core.beans;
 2  
 
 3  
 /**
 4  
  * <p>This entity bean defines a single look-up table property.</p>
 5  
  */
 6  0
 public class LookupTableProperty extends PersistentBeanBase {
 7  
         private static final long serialVersionUID = 1;
 8  0
         private int id = -1;
 9  0
         private String tableId = null;
 10  0
         private int sequence = 0;
 11  0
         private boolean inputRequired = false;
 12  0
         private boolean displayOnList = false;
 13  0
         private String name = null;
 14  0
         private String type = null;
 15  0
         private String size = null;
 16  0
         private String label = null;
 17  0
         private String colHeading = null;
 18  0
         private String source = null;
 19  0
         private String notes = null;
 20  
 
 21  
         public String getColHeading() {
 22  0
                 return colHeading;
 23  
         }
 24  
         public void setColHeading(String colHeading) {
 25  0
                 this.colHeading = colHeading;
 26  0
         }
 27  
         public boolean isDisplayOnList() {
 28  0
                 return displayOnList;
 29  
         }
 30  
         public void setDisplayOnList(boolean displayOnList) {
 31  0
                 this.displayOnList = displayOnList;
 32  0
         }
 33  
         public int getId() {
 34  0
                 return id;
 35  
         }
 36  
         public void setId(int id) {
 37  0
                 this.id = id;
 38  0
         }
 39  
         public boolean isInputRequired() {
 40  0
                 return inputRequired;
 41  
         }
 42  
         public void setInputRequired(boolean inputRequired) {
 43  0
                 this.inputRequired = inputRequired;
 44  0
         }
 45  
         public String getLabel() {
 46  0
                 return label;
 47  
         }
 48  
         public void setLabel(String label) {
 49  0
                 this.label = label;
 50  0
         }
 51  
         public String getName() {
 52  0
                 return name;
 53  
         }
 54  
         public void setName(String name) {
 55  0
                 this.name = name;
 56  0
         }
 57  
         public String getNotes() {
 58  0
                 return notes;
 59  
         }
 60  
         public void setNotes(String notes) {
 61  0
                 this.notes = notes;
 62  0
         }
 63  
         public int getSequence() {
 64  0
                 return sequence;
 65  
         }
 66  
         public void setSequence(int sequence) {
 67  0
                 this.sequence = sequence;
 68  0
         }
 69  
         public String getSize() {
 70  0
                 return size;
 71  
         }
 72  
         public void setSize(String size) {
 73  0
                 this.size = size;
 74  0
         }
 75  
         public String getSource() {
 76  0
                 return source;
 77  
         }
 78  
         public void setSource(String source) {
 79  0
                 this.source = source;
 80  0
         }
 81  
         public String getTableId() {
 82  0
                 return tableId;
 83  
         }
 84  
         public void setTableId(String tableId) {
 85  0
                 this.tableId = tableId;
 86  0
         }
 87  
         public String getType() {
 88  0
                 return type;
 89  
         }
 90  
         public void setType(String type) {
 91  0
                 this.type = type;
 92  0
         }
 93  
 }