package com.diodesoftware.scb.beans;
/**
* Created by IntelliJ IDEA.
* User: rob
* Date: Jun 23, 2007
* Time: 12:17:53 PM
* To change this template use File | Settings | File Templates.
*/
public class TestBean {
private String hello;
public String getHello() {
return hello;
}
public void setHello(String hello) {
this.hello = hello;
}
}