Exemplo n.º 1
0
 private static String chooseDefault(BindingProperty property, String... candidates) {
   for (String candidate : candidates) {
     if (property.isAllowedValue(candidate)) {
       return candidate;
     }
   }
   return property.getFirstAllowedValue();
 }