1 package org.kuali.ole.editor.bo;
2
3 import java.io.Serializable;
4
5 /**
6 * MarcEditorControlField is business object class for Marc Editor
7 */
8 public class MarcEditorControlField implements Serializable {
9 private String tag;
10 private String value;
11 /**
12 * Gets the tag attribute.
13 * @return Returns the tag.
14 */
15 public String getTag() {
16 return tag;
17 }
18 /**
19 * Sets the tag attribute value.
20 * @param tag The tag to set.
21 */
22 public void setTag(String tag) {
23 this.tag = tag;
24 }
25 /**
26 * Gets the value attribute.
27 * @return Returns the value.
28 */
29 public String getValue() {
30 return value;
31 }
32 /**
33 * Sets the value attribute value.
34 * @param value The value to set.
35 */
36 public void setValue(String value) {
37 this.value = value;
38 }
39 }