01: package de.schlund.pfixcore.generator;
02:
03: /**
04: * Describe interface IWrapperParamDefinition here.
05: *
06: *
07: * Created: Fri Apr 29 16:46:47 2005
08: *
09: * @author <a href="mailto:jtl@schlund.de">Jens Lautenbacher</a>
10: * @version 1.0
11: */
12: public interface IWrapperParamDefinition {
13: String getName();
14:
15: String getType();
16:
17: String getOccurance();
18:
19: String getFrequency();
20:
21: IWrapperParamCaster getCaster();
22:
23: IWrapperParamPreCheck[] getPreChecks();
24:
25: IWrapperParamPostCheck[] getPostChecks();
26: }
|