1 package org.kuali.ole.describe.bo.marc.structuralfields.controlfield007;
2
3
4
5
6 public class MicroForm {
7 private String specificMaterialDesignation = "u";
8 private String undefined = "#";
9 private String aspect = "u";
10 private String dimensions = "u";
11 private String reductionRatioRange = "u";
12 private String reductionRatio = "|||";
13 private String color = "u";
14 private String emulsionOnFilm = "u";
15 private String generation = "u";
16 private String baseOfFilm = "u";
17
18 public String getSpecificMaterialDesignation() {
19 return specificMaterialDesignation;
20 }
21
22 public void setSpecificMaterialDesignation(String specificMaterialDesignation) {
23 this.specificMaterialDesignation = specificMaterialDesignation;
24 }
25
26 public String getUndefined() {
27 return undefined;
28 }
29
30 public void setUndefined(String undefined) {
31 this.undefined = undefined;
32 }
33
34 public String getAspect() {
35 return aspect;
36 }
37
38 public void setAspect(String aspect) {
39 this.aspect = aspect;
40 }
41
42 public String getDimensions() {
43 return dimensions;
44 }
45
46 public void setDimensions(String dimensions) {
47 this.dimensions = dimensions;
48 }
49
50 public String getReductionRatioRange() {
51 return reductionRatioRange;
52 }
53
54 public void setReductionRatioRange(String reductionRatioRange) {
55 this.reductionRatioRange = reductionRatioRange;
56 }
57
58 public String getReductionRatio() {
59 return reductionRatio;
60 }
61
62 public void setReductionRatio(String reductionRatio) {
63 this.reductionRatio = reductionRatio;
64 }
65
66 public String getColor() {
67 return color;
68 }
69
70 public void setColor(String color) {
71 this.color = color;
72 }
73
74 public String getEmulsionOnFilm() {
75 return emulsionOnFilm;
76 }
77
78 public void setEmulsionOnFilm(String emulsionOnFilm) {
79 this.emulsionOnFilm = emulsionOnFilm;
80 }
81
82 public String getGeneration() {
83 return generation;
84 }
85
86 public void setGeneration(String generation) {
87 this.generation = generation;
88 }
89
90 public String getBaseOfFilm() {
91 return baseOfFilm;
92 }
93
94 public void setBaseOfFilm(String baseOfFilm) {
95 this.baseOfFilm = baseOfFilm;
96 }
97 }