001package org.kuali.ole.describe.bo.marc.structuralfields.controlfield006; 002 003/** 004 * Class for handling format 'Books' 005 */ 006public class Books { 007 private String illustrations = "#"; 008 private String targetAudience = "#"; 009 private String formOfItem = "#"; 010 private String natureOfContents = "#"; 011 private String govtPublications = "#"; 012 private String confPublications = "0"; 013 private String festschrift = "0"; 014 private String index = "0"; 015 private String undefined = "#"; 016 private String literaryForm = "0"; 017 private String biography = "#"; 018 019 public String getIllustrations() { 020 return illustrations; 021 } 022 023 public void setIllustrations(String illustrations) { 024 this.illustrations = illustrations; 025 } 026 027 public String getTargetAudience() { 028 return targetAudience; 029 } 030 031 public void setTargetAudience(String targetAudience) { 032 this.targetAudience = targetAudience; 033 } 034 035 public String getFormOfItem() { 036 return formOfItem; 037 } 038 039 public void setFormOfItem(String formOfItem) { 040 this.formOfItem = formOfItem; 041 } 042 043 public String getNatureOfContents() { 044 return natureOfContents; 045 } 046 047 public void setNatureOfContents(String natureOfContents) { 048 this.natureOfContents = natureOfContents; 049 } 050 051 public String getGovtPublications() { 052 return govtPublications; 053 } 054 055 public void setGovtPublications(String govtPublications) { 056 this.govtPublications = govtPublications; 057 } 058 059 public String getConfPublications() { 060 return confPublications; 061 } 062 063 public void setConfPublications(String confPublications) { 064 this.confPublications = confPublications; 065 } 066 067 public String getFestschrift() { 068 return festschrift; 069 } 070 071 public void setFestschrift(String festschrift) { 072 this.festschrift = festschrift; 073 } 074 075 public String getIndex() { 076 return index; 077 } 078 079 public void setIndex(String index) { 080 this.index = index; 081 } 082 083 public String getUndefined() { 084 return undefined; 085 } 086 087 public void setUndefined(String undefined) { 088 this.undefined = undefined; 089 } 090 091 public String getLiteraryForm() { 092 return literaryForm; 093 } 094 095 public void setLiteraryForm(String literaryForm) { 096 this.literaryForm = literaryForm; 097 } 098 099 public String getBiography() { 100 return biography; 101 } 102 103 public void setBiography(String biography) { 104 this.biography = biography; 105 } 106}