if (props != null) {
this.properties.putAll(props);
for (Object key : props.keySet()) {
String key2 = (String) key;
String value = props.getProperty((String) key);
QueryProperty prop = QueryPropertyFactory.getProperty(key2, value, this);
prop.handle();
}
}
}