01: package com.bostechcorp.cbesb.common.util.custcomponent;
02:
03: /**
04: * The class for boolean-type property.
05: *
06: * @author elu
07: *
08: */
09: public interface IBooleanProperty extends IProperty {
10:
11: /**
12: *
13: * @return default value of boolean property
14: */
15: public boolean getDefaultValue();
16:
17: }
|