View Javadoc

1   package org.kuali.ole.describe.bo.marc.structuralfields.controlfield006;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: jayabharathreddy
6    * Date: 6/20/13
7    * Time: 5:49 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class Map {
11  
12      private String relief = "#";
13      private String projection = "##";
14      private String undefinedpos8 = "#";
15      private String undefinedpos7 = "#";
16      private String undefinedpos4 = "#";
17  
18      private String undefined2 = "##";
19  
20      private String typeOfCartographicMaterial = "a";
21      private String governmentPublication = "#";
22      private String formOfItem = "#";
23      private String index = "0";
24      private String specialFormatCharacteristics = "#";
25  
26      public String getUndefined2() {
27          return undefined2;
28      }
29  
30      public void setUndefined2(String undefined2) {
31          this.undefined2 = undefined2;
32      }
33  
34      public String getProjection() {
35          return projection;
36      }
37  
38      public void setProjection(String projection) {
39          projection = projection;
40      }
41  
42      public String getRelief() {
43          return relief;
44      }
45  
46      public void setRelief(String relief) {
47          this.relief = relief;
48      }
49  
50      public String getUndefinedpos8() {
51          return undefinedpos8;
52      }
53  
54      public void setUndefinedpos8(String undefinedpos8) {
55          this.undefinedpos8 = undefinedpos8;
56      }
57  
58      public String getUndefinedpos7() {
59          return undefinedpos7;
60      }
61  
62      public void setUndefinedpos7(String undefinedpos7) {
63          this.undefinedpos7 = undefinedpos7;
64      }
65  
66      public String getUndefinedpos4() {
67          return undefinedpos4;
68      }
69  
70      public void setUndefinedpos4(String undefinedpos4) {
71          this.undefinedpos4 = undefinedpos4;
72      }
73  
74      public String getTypeOfCartographicMaterial() {
75          return typeOfCartographicMaterial;
76      }
77  
78      public void setTypeOfCartographicMaterial(String typeOfCartographicMaterial) {
79          this.typeOfCartographicMaterial = typeOfCartographicMaterial;
80      }
81  
82      public String getGovernmentPublication() {
83          return governmentPublication;
84      }
85  
86      public void setGovernmentPublication(String governmentPublication) {
87          this.governmentPublication = governmentPublication;
88      }
89  
90      public String getFormOfItem() {
91          return formOfItem;
92      }
93  
94      public void setFormOfItem(String formOfItem) {
95          this.formOfItem = formOfItem;
96      }
97  
98      public String getIndex() {
99          return index;
100     }
101 
102     public void setIndex(String index) {
103         this.index = index;
104     }
105 
106     public String getSpecialFormatCharacteristics() {
107         return specialFormatCharacteristics;
108     }
109 
110     public void setSpecialFormatCharacteristics(String specialFormatCharacteristics) {
111         this.specialFormatCharacteristics = specialFormatCharacteristics;
112     }
113 
114 
115 }