1 package org.kuali.ole.describe.bo.marc.structuralfields.controlfield007;
2
3
4
5
6 public class ElectronicResource {
7
8 private String specificMaterialDesignation = "u";
9 private String color = "|";
10 private String dimensions = "|";
11 private String sound = "#";
12 private String imageBitDepth = "|||";
13 private String fileFormats = "u";
14 private String qualityAssuranceTargets = "u";
15 private String source = "u";
16 private String levelOfCompression = "u";
17 private String reformattingQuality = "u";
18 private String undefined= "#";
19
20 public String getUndefined() {
21 return undefined;
22 }
23
24 public void setUndefined(String undefined) {
25 this.undefined = undefined;
26 }
27
28 public String getSpecificMaterialDesignation() {
29 return specificMaterialDesignation;
30 }
31
32 public void setSpecificMaterialDesignation(String specificMaterialDesignation) {
33 this.specificMaterialDesignation = specificMaterialDesignation;
34 }
35
36 public String getColor() {
37 return color;
38 }
39
40 public void setColor(String color) {
41 this.color = color;
42 }
43
44 public String getDimensions() {
45 return dimensions;
46 }
47
48 public void setDimensions(String dimensions) {
49 this.dimensions = dimensions;
50 }
51
52 public String getSound() {
53 return sound;
54 }
55
56 public void setSound(String sound) {
57 this.sound = sound;
58 }
59
60 public String getImageBitDepth() {
61 return imageBitDepth;
62 }
63
64 public void setImageBitDepth(String imageBitDepth) {
65 this.imageBitDepth = imageBitDepth;
66 }
67
68 public String getFileFormats() {
69 return fileFormats;
70 }
71
72 public void setFileFormats(String fileFormats) {
73 this.fileFormats = fileFormats;
74 }
75
76 public String getQualityAssuranceTargets() {
77 return qualityAssuranceTargets;
78 }
79
80 public void setQualityAssuranceTargets(String qualityAssuranceTargets) {
81 this.qualityAssuranceTargets = qualityAssuranceTargets;
82 }
83
84 public String getSource() {
85 return source;
86 }
87
88 public void setSource(String source) {
89 this.source = source;
90 }
91
92 public String getLevelOfCompression() {
93 return levelOfCompression;
94 }
95
96 public void setLevelOfCompression(String levelOfCompression) {
97 this.levelOfCompression = levelOfCompression;
98 }
99
100 public String getReformattingQuality() {
101 return reformattingQuality;
102 }
103
104 public void setReformattingQuality(String reformattingQuality) {
105 this.reformattingQuality = reformattingQuality;
106 }
107 }