Home | History | Annotate | Download | only in util

Lines Matching refs:properties

4 import java.util.Properties;
10 public static String doSingleSubstitution(String originalValue, Properties properties) {
22 if (properties != null) {
23 propertyValue = properties.getProperty(propertyName);
41 public static void doSubstitutions(Properties properties) {
42 Enumeration<?> propertyNames = properties.propertyNames();
45 String propertyValue = properties.getProperty(propertyName);
46 String expandedPropertyValue = doSingleSubstitution(propertyValue, properties);
47 properties.setProperty(propertyName, expandedPropertyValue);