View Javadoc
1   package org.kuali.ole.pojo.edi;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: palanivel
6    * Date: 3/2/12
7    * Time: 2:22 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class ItemDescription {
11      private String text;
12      private String itemCharacteristicCode;
13      private String data;
14  
15      public String getText() {
16          return text;
17      }
18  
19      public void setText(String text) {
20          this.text = text;
21      }
22  
23      public String getItemCharacteristicCode() {
24          return itemCharacteristicCode;
25      }
26  
27      public void setItemCharacteristicCode(String itemCharacteristicCode) {
28          this.itemCharacteristicCode = itemCharacteristicCode;
29      }
30  
31      public String getData() {
32          return data;
33      }
34  
35      public void setData(String data) {
36          this.data = data;
37      }
38  }