// make sure all the given attribute parameters can be assigned via
// attributes
boolean miss = false;
for (String key : attributeNames) {
FluentArg arg = method.parameterAnnotations.get(key);
if (arg == null || !arg.attribute()) {
miss = true;
break;
}
}
if (miss)