1 package org.telscenter.pas.hint;
2
3 import java.io.Serializable;
4
5
6 public class Hint implements Serializable {
7
8 private String text;
9
10 public String getText() {
11 return text;
12 }
13
14 public void setText(String text) {
15 this.text = text;
16 }
17
18 }