View Javadoc
1   package org.kuali.ole.describe.bo.marc.structuralfields.controlfield006;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: jayabharathreddy
6    * Date: 6/24/13
7    * Time: 1:32 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class MixedMaterial {
11  
12      private String undefinedPos5 = "#####";
13      private String undefinedPos10 = "###########";
14      private String formOfItem="#";
15  
16      public String getUndefinedPos10() {
17          return undefinedPos10;
18      }
19  
20      public void setUndefinedPos10(String undefinedPos10) {
21          this.undefinedPos10 = undefinedPos10;
22      }
23  
24      public String getUndefinedPos5() {
25          return undefinedPos5;
26      }
27  
28      public void setUndefinedPos5(String undefinedPos5) {
29          this.undefinedPos5 = undefinedPos5;
30      }
31  
32      public String getFormOfItem() {
33          return formOfItem;
34      }
35  
36      public void setFormOfItem(String formOfItem) {
37          this.formOfItem = formOfItem;
38      }
39  }