1 package org.kuali.ole.editor.bo;
2
3 import java.io.Serializable;
4
5 /**
6 * MarcEditorDataField is business object class for Marc Editor
7 */
8 public class MarcEditorDataField implements Serializable {
9 private String tag;
10 private String ind1;
11 private String ind2;
12 private String value;
13 /**
14 * Gets the tag attribute.
15 * @return Returns the tag.
16 */
17 public String getTag() {
18 return tag;
19 }
20 /**
21 * Sets the tag attribute value.
22 * @param tag The tag to set.
23 */
24 public void setTag(String tag) {
25 this.tag = tag;
26 }
27 /**
28 * Gets the value attribute.
29 * @return Returns the value.
30 */
31 public String getValue() {
32 return value;
33 }
34 /**
35 * Sets the value attribute value.
36 * @param value The value to set.
37 */
38 public void setValue(String value) {
39 this.value = value;
40 }
41 /**
42 * Gets the ind1 attribute.
43 * @return Returns the ind1.
44 */
45 public String getInd1() {
46 return ind1;
47 }
48 /**
49 * Sets the ind1 attribute value.
50 * @param ind1 The ind1 to set.
51 */
52 public void setInd1(String ind1) {
53 this.ind1 = ind1;
54 }
55 /**
56 * Gets the ind2 attribute.
57 * @return Returns the ind2.
58 */
59 public String getInd2() {
60 return ind2;
61 }
62 /**
63 * Sets the ind2 attribute value.
64 * @param ind2 The ind2 to set.
65 */
66 public void setInd2(String ind2) {
67 this.ind2 = ind2;
68 }
69
70 /**
71 * Implementing equals,Indicates whether some other object is "equal to" this one.
72 * @param obj
73 * @return boolean
74 */
75 @Override
76 public boolean equals(Object obj) {
77 return super.equals(obj); //To change body of overridden methods use File | Settings | File Templates.
78 }
79 }