public static EventRegistration anyPropertyChange(String property, String... andOtherProperties)
{
ArrayList<String> properties = new ArrayList<String>();
properties.add(property);
Collections.addAll(properties, andOtherProperties);
return new PropertyListenerRegistration(properties, null);
}