001package org.kuali.ole.describe.bo;
002
003import java.io.Serializable;
004
005/**
006 * MarcEditorControlField is business object class for Marc Editor
007 */
008public class WorkMarcEditorControlField implements Serializable {
009    private String tag;
010    private String value;
011
012    /**
013     * Gets the tag attribute.
014     *
015     * @return Returns the tag.
016     */
017    public String getTag() {
018        return tag;
019    }
020
021    /**
022     * Sets the tag attribute value.
023     *
024     * @param tag The tag to set.
025     */
026    public void setTag(String tag) {
027        this.tag = tag;
028    }
029
030    /**
031     * Gets the value attribute.
032     *
033     * @return Returns the value.
034     */
035    public String getValue() {
036        return value;
037    }
038
039    /**
040     * Sets the value attribute value.
041     *
042     * @param value The value to set.
043     */
044    public void setValue(String value) {
045        this.value = value;
046    }
047}