1 package org.kuali.ole.editor.bo; 2 3 import java.io.Serializable; 4 5 /** 6 * DublinEditorField is business object class for Dublin Editor 7 */ 8 public class DublinEditorField implements Serializable { 9 10 private String element; 11 private String value; 12 13 /** 14 * Gets the element attribute. 15 * @return Returns the element. 16 */ 17 public String getElement() { 18 return element; 19 } 20 /** 21 * Sets the element attribute value. 22 * @param element The element to set. 23 */ 24 public void setElement(String element) { 25 this.element = element; 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 }