View Javadoc
1   package org.kuali.ole.describe.bo.marc.structuralfields.controlfield007;
2   
3   /**
4    * Class for handling control field 007 format 'MotionPicture'
5    */
6   public class MotionPicture {
7       private String specificMaterialDesignation = "u";
8       private String undefined = "#";
9       private String color = "u";
10      private String presentationFormat = "u";
11      private String soundOnMedium = "u";
12      private String mediumForSound = "u";
13      private String dimensions = "u";
14      private String configuration = "u";
15      private String productionElements = "n";
16      private String aspect = "u";
17      private String generation = "u";
18      private String baseOfFilm = "u";
19      private String refinedColor = "u";
20      private String colorStock = "u";
21      private String deteriorationStage = "a";
22      private String completeness = "c";
23      private String filmDate = "||||||";
24  
25      public String getSpecificMaterialDesignation() {
26          return specificMaterialDesignation;
27      }
28  
29      public void setSpecificMaterialDesignation(String specificMaterialDesignation) {
30          this.specificMaterialDesignation = specificMaterialDesignation;
31      }
32  
33      public String getUndefined() {
34          return undefined;
35      }
36  
37      public void setUndefined(String undefined) {
38          this.undefined = undefined;
39      }
40  
41      public String getColor() {
42          return color;
43      }
44  
45      public void setColor(String color) {
46          this.color = color;
47      }
48  
49      public String getPresentationFormat() {
50          return presentationFormat;
51      }
52  
53      public void setPresentationFormat(String presentationFormat) {
54          this.presentationFormat = presentationFormat;
55      }
56  
57      public String getSoundOnMedium() {
58          return soundOnMedium;
59      }
60  
61      public void setSoundOnMedium(String soundOnMedium) {
62          this.soundOnMedium = soundOnMedium;
63      }
64  
65      public String getMediumForSound() {
66          return mediumForSound;
67      }
68  
69      public void setMediumForSound(String mediumForSound) {
70          this.mediumForSound = mediumForSound;
71      }
72  
73      public String getDimensions() {
74          return dimensions;
75      }
76  
77      public void setDimensions(String dimensions) {
78          this.dimensions = dimensions;
79      }
80  
81      public String getConfiguration() {
82          return configuration;
83      }
84  
85      public void setConfiguration(String configuration) {
86          this.configuration = configuration;
87      }
88  
89      public String getProductionElements() {
90          return productionElements;
91      }
92  
93      public void setProductionElements(String productionElements) {
94          this.productionElements = productionElements;
95      }
96  
97      public String getAspect() {
98          return aspect;
99      }
100 
101     public void setAspect(String aspect) {
102         this.aspect = aspect;
103     }
104 
105     public String getGeneration() {
106         return generation;
107     }
108 
109     public void setGeneration(String generation) {
110         this.generation = generation;
111     }
112 
113     public String getBaseOfFilm() {
114         return baseOfFilm;
115     }
116 
117     public void setBaseOfFilm(String baseOfFilm) {
118         this.baseOfFilm = baseOfFilm;
119     }
120 
121     public String getRefinedColor() {
122         return refinedColor;
123     }
124 
125     public void setRefinedColor(String refinedColor) {
126         this.refinedColor = refinedColor;
127     }
128 
129     public String getColorStock() {
130         return colorStock;
131     }
132 
133     public void setColorStock(String colorStock) {
134         this.colorStock = colorStock;
135     }
136 
137     public String getDeteriorationStage() {
138         return deteriorationStage;
139     }
140 
141     public void setDeteriorationStage(String deteriorationStage) {
142         this.deteriorationStage = deteriorationStage;
143     }
144 
145     public String getCompleteness() {
146         return completeness;
147     }
148 
149     public void setCompleteness(String completeness) {
150         this.completeness = completeness;
151     }
152 
153     public String getFilmDate() {
154         return filmDate;
155     }
156 
157     public void setFilmDate(String filmDate) {
158         this.filmDate = filmDate;
159     }
160 }