01: package nl.hippo.cms.wizard.widgets;
02:
03: import nl.hippo.cms.wizard.components.Component;
04:
05: public interface Widget extends Component {
06:
07: //set and get value object
08: Object getValue();
09:
10: void setValue(Object object);
11:
12: //get value that can be used in the url path
13: String getURIValue();
14:
15: }
|