01: package com.bostechcorp.cbesb.common.util.custcomponent;
02:
03: /**
04: * The class for endpoint-type properties
05: * @author elu
06: *
07: */
08: public interface IEndpointProperty extends IProperty {
09:
10: /**
11: * If a property is editable, user can enter new value outside of the pre-defined vlaues.
12: * @return whether the property is writable
13: */
14: public boolean isEditable();
15:
16: }
|