01: package com.bostechcorp.cbesb.common.util.custcomponent;
02:
03: /**
04: * The IWizardPage interface is used to model a wizard page for a custom component
05: * The first wizard page in consumer role needs to include the defaultMEP property.
06: * @author elu
07: *
08: */
09: public interface IWizardPage {
10:
11: /**
12: *
13: * @return the name of wizard page
14: */
15: public String getName();
16:
17: /**
18: *
19: * @return return the description of wizard
20: */
21: public String getDescription();
22:
23: /**
24: *
25: * @return all the IProperty objects for the page
26: */
27: public IProperty[] getProperties();
28:
29: }
|