View Javadoc
1   package org.kuali.ole.describe.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      /**
13       * Gets the tag attribute.
14       *
15       * @return Returns the tag.
16       */
17      public String getTag() {
18          return tag;
19      }
20  
21      /**
22       * Sets the tag attribute value.
23       *
24       * @param tag The tag to set.
25       */
26      public void setTag(String tag) {
27          this.tag = tag;
28      }
29  
30      /**
31       * Gets the value attribute.
32       *
33       * @return Returns the value.
34       */
35      public String getValue() {
36          return value;
37      }
38  
39      /**
40       * Sets the value attribute value.
41       *
42       * @param value The value to set.
43       */
44      public void setValue(String value) {
45          this.value = value;
46      }
47  }