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 undefined5 = "#####";
13      private String undefined10 = "###########";
14      private String formOfItem="#";
15  
16  
17      public String getUndefined5() {
18          return undefined5;
19      }
20  
21      public void setUndefined5(String undefined5) {
22          this.undefined5 = undefined5;
23      }
24  
25      public String getUndefined10() {
26          return undefined10;
27      }
28  
29      public void setUndefined10(String undefined10) {
30          this.undefined10 = undefined10;
31      }
32  
33  
34      public String getFormOfItem() {
35          return formOfItem;
36      }
37  
38      public void setFormOfItem(String formOfItem) {
39          this.formOfItem = formOfItem;
40      }
41  }