01: /**
02: *
03: */package nl.hippo.cms.wizard.aspects;
04:
05: import nl.hippo.cms.wizard.WizardResult;
06: import nl.hippo.cms.wizard.components.Configurable;
07: import nl.hippo.cms.wizard.components.Component;
08:
09: /**
10: *
11: * @author a.bogaart@hippo.nl
12: *
13: */
14: public interface ComponentAspect extends Configurable {
15:
16: public void setComponent(Component component);
17:
18: public void fillResult(WizardResult result);
19: }
|