* @param editable
*/
public AttributePropertyDescriptor( Object id, String displayName, AttributeDescriptor type , SimpleFeatureType schema, boolean editable) {
super(id, displayName);
this.type = type;
validator = new AttributeValidator(type, schema );
comboBoxList = createComboList();
this.editable = editable;
}