01: package com.bostechcorp.cbesb.common.util.custcomponent;
02:
03: /**
04: * The class for text property
05: *
06: * @author elu
07: *
08: */
09: public interface ITextProperty extends IProperty {
10: /**
11: *
12: * @return deafult value for property
13: */
14: public String getDefaultValue();
15:
16: public boolean isPassword();
17:
18: public void setIsPassword(boolean isPassword);
19:
20: }
|