View Javadoc

1   package org.kuali.ole.editor.bo;
2   
3   import java.io.Serializable;
4   
5   /**
6    * Created by IntelliJ IDEA.
7    * User: balakumaranm
8    * Date: 3/28/12
9    * Time: 3:31 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class MarcEditorDataField  implements Serializable {
13      private String tag;
14      private String ind1;
15      private String ind2;
16      private String value;
17  
18      public String getTag() {
19          return tag;
20      }
21  
22      public void setTag(String tag) {
23          this.tag = tag;
24      }
25  
26      public String getValue() {
27          return value;
28      }
29  
30      public void setValue(String value) {
31          this.value = value;
32      }
33  
34      public String getInd1() {
35          return ind1;
36      }
37  
38      public void setInd1(String ind1) {
39          this.ind1 = ind1;
40      }
41  
42      public String getInd2() {
43          return ind2;
44      }
45  
46      public void setInd2(String ind2) {
47          this.ind2 = ind2;
48      }
49  
50  }