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