public ClientStorageExample(){
super(new BoundWidgetTypeFactory(), null);
Field[] cols = new Field[2];
cols[0] = new Field("name", "Name", null,
"A name", null, new CompositeValidator()
.add( NotNullValidator.INSTANCE )
.add( NAME_VALIDATOR ),
new PopupValidationFeedback(PopupValidationFeedback.BOTTOM));
cols[1] = new Field("value", "Value", null,
"The Value of the field");