View Javadoc
1   package org.kuali.ole.describe.bo.marc.structuralfields.controlfield007;
2   
3   /**
4    * Class for handling control field 007 format 'Remote Sensing Image'
5    */
6   public class RemoteSensingImage {
7       private String specificMaterialDesignation = "u";
8       private String undefined = "#";
9       private String altitudeOfSensor = "u";
10      private String attitudeOfSensor = "u";
11      private String cloudCover = "u";
12      private String constructionType = "u";
13      private String category = "u";
14      private String sensorType = "u";
15      private String dataType ="uu";
16  
17      public String getSpecificMaterialDesignation() {
18          return specificMaterialDesignation;
19      }
20  
21      public void setSpecificMaterialDesignation(String specificMaterialDesignation) {
22          this.specificMaterialDesignation = specificMaterialDesignation;
23      }
24  
25      public String getUndefined() {
26          return undefined;
27      }
28  
29      public void setUndefined(String undefined) {
30          this.undefined = undefined;
31      }
32  
33      public String getAltitudeOfSensor() {
34          return altitudeOfSensor;
35      }
36  
37      public void setAltitudeOfSensor(String altitudeOfSensor) {
38          this.altitudeOfSensor = altitudeOfSensor;
39      }
40  
41      public String getAttitudeOfSensor() {
42          return attitudeOfSensor;
43      }
44  
45      public void setAttitudeOfSensor(String attitudeOfSensor) {
46          this.attitudeOfSensor = attitudeOfSensor;
47      }
48  
49      public String getCloudCover() {
50          return cloudCover;
51      }
52  
53      public void setCloudCover(String cloudCover) {
54          this.cloudCover = cloudCover;
55      }
56  
57      public String getConstructionType() {
58          return constructionType;
59      }
60  
61      public void setConstructionType(String constructionType) {
62          this.constructionType = constructionType;
63      }
64  
65      public String getCategory() {
66          return category;
67      }
68  
69      public void setCategory(String category) {
70          this.category = category;
71      }
72  
73      public String getSensorType() {
74          return sensorType;
75      }
76  
77      public void setSensorType(String sensorType) {
78          this.sensorType = sensorType;
79      }
80  
81      public String getDataType() {
82          return dataType;
83      }
84  
85      public void setDataType(String dataType) {
86          this.dataType = dataType;
87      }
88  }