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       * Gets the tag attribute.
19       * @return Returns the tag.
20       */
21      public String getTag() {
22          return tag;
23      }
24      /**
25       * Sets the tag attribute value.
26       * @param tag The tag to set.
27       */
28      public void setTag(String tag) {
29          this.tag = tag;
30      }
31      /**
32       * Gets the value attribute.
33       * @return Returns the value.
34       */
35      public String getValue() {
36          return value;
37      }
38      /**
39       * Sets the value attribute value.
40       * @param value The value to set.
41       */
42      public void setValue(String value) {
43          this.value = value;
44      }
45      /**
46       * Gets the ind1 attribute.
47       * @return Returns the ind1.
48       */
49      public String getInd1() {
50          return ind1;
51      }
52      /**
53       * Sets the ind1 attribute value.
54       * @param ind1 The ind1 to set.
55       */
56      public void setInd1(String ind1) {
57          this.ind1 = ind1;
58      }
59      /**
60       * Gets the ind2 attribute.
61       * @return Returns the ind2.
62       */
63      public String getInd2() {
64          return ind2;
65      }
66      /**
67       * Sets the ind2 attribute value.
68       * @param ind2 The ind2 to set.
69       */
70      public void setInd2(String ind2) {
71          this.ind2 = ind2;
72      }
73  
74      /**
75       *    Implementing equals,Indicates whether some other object is "equal to" this one.
76       * @param obj
77       * @return boolean
78       */
79      @Override
80      public boolean equals(Object obj) {
81          return super.equals(obj);    //To change body of overridden methods use File | Settings | File Templates.
82      }
83  }