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 undefinedPos2 = "##";
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 getUndefinedPos2() {
27          return undefinedPos2;
28      }
29  
30      public void setUndefinedPos2(String undefinedPos2) {
31          this.undefinedPos2 = undefinedPos2;
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 }