Skip to content
robert-bor edited this page Mar 14, 2013 · 3 revisions
public class BeanSimpleConverter extends AbstractConverter<BeanSimple> {

    @Override
    public BeanSimple fromString(String text) throws Exception {
        return new BeanSimple(text);
    }

    @Override
    public Class getType() {
        return BeanSimple.class;
    }

}
Clone this wiki locally