1 package org.kuali.ole.describe.bo.marc.structuralfields.controlfield006;
2
3 /**
4 * Created with IntelliJ IDEA.
5 * User: jayabharathreddy
6 * Date: 7/15/13
7 * Time: 3:48 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class ControlField006Text {
11 private String rawText;
12
13 public String getRawText() {
14 return rawText;
15 }
16
17 public void setRawText(String rawText) {
18 this.rawText = rawText;
19 }
20 }