01: package nl.hippo.cms.wizard.widgets;
02:
03: public class StringWidget extends AbstractWidget {
04:
05: public static final String TYPE = "string";
06:
07: //@Override
08: public Object getValue() {
09: if (super .getValue() != null) {
10: return super .getValue().toString();
11: }
12: return "";
13: }
14:
15: public String getType() {
16: return TYPE;
17: }
18:
19: }
|