/** For dynamically remove properties to this tab */ public void removeProperty(int index) { if (propertiesNames == null) return; propertiesNames.remove(index); resetAfterAddRemoveProperty(); }
/** For dynamically remove properties to this tab */ public void removeProperty(String propertyName) { if (propertiesNames == null) return; propertiesNames.remove(propertyName); resetAfterAddRemoveProperty(); }