View Javadoc
1   package org.kuali.ole.describe.bo.marc.structuralfields.controlfield008;
2   
3   /**
4    * Class for handling format 'Books'
5    */
6   public class Books {
7       private String illustrations = "#";
8       private String targetAudience = "#";
9       private String formOfItem = "#";
10      private String natureOfContents = "#";
11      private String govtPublications = "#";
12      private String confPublications = "0";
13      private String festschrift = "0";
14      private String index = "0";
15      private String undefined = "#";
16      private String literaryForm = "0";
17      private String biography = "#";
18  
19      public String getIllustrations() {
20          return illustrations;
21      }
22  
23      public void setIllustrations(String illustrations) {
24          this.illustrations = illustrations;
25      }
26  
27      public String getTargetAudience() {
28          return targetAudience;
29      }
30  
31      public void setTargetAudience(String targetAudience) {
32          this.targetAudience = targetAudience;
33      }
34  
35      public String getFormOfItem() {
36          return formOfItem;
37      }
38  
39      public void setFormOfItem(String formOfItem) {
40          this.formOfItem = formOfItem;
41      }
42  
43      public String getNatureOfContents() {
44          return natureOfContents;
45      }
46  
47      public void setNatureOfContents(String natureOfContents) {
48          this.natureOfContents = natureOfContents;
49      }
50  
51      public String getGovtPublications() {
52          return govtPublications;
53      }
54  
55      public void setGovtPublications(String govtPublications) {
56          this.govtPublications = govtPublications;
57      }
58  
59      public String getConfPublications() {
60          return confPublications;
61      }
62  
63      public void setConfPublications(String confPublications) {
64          this.confPublications = confPublications;
65      }
66  
67      public String getFestschrift() {
68          return festschrift;
69      }
70  
71      public void setFestschrift(String festschrift) {
72          this.festschrift = festschrift;
73      }
74  
75      public String getIndex() {
76          return index;
77      }
78  
79      public void setIndex(String index) {
80          this.index = index;
81      }
82  
83      public String getUndefined() {
84          return undefined;
85      }
86  
87      public void setUndefined(String undefined) {
88          this.undefined = undefined;
89      }
90  
91      public String getLiteraryForm() {
92          return literaryForm;
93      }
94  
95      public void setLiteraryForm(String literaryForm) {
96          this.literaryForm = literaryForm;
97      }
98  
99      public String getBiography() {
100         return biography;
101     }
102 
103     public void setBiography(String biography) {
104         this.biography = biography;
105     }
106 }