List of utility methods to do Dictionary Usage
List | updateConfigurableListField(Dictionary update Configurable List Field int index = 0; List<String> configurableList = new ArrayList<String>(); while (properties.get(propertyName + index) != null) { String propertyValue = (String) properties.get(propertyName + index++); if (propertyValue != null && !propertyValue.isEmpty()) configurableList.add(propertyValue); return configurableList; ... |