if (name.startsWith(ATTR_GENERIC_PREFIX1)) {
name = name.substring(1, name.length());
}
String value = tag.getValue();
// String[] parameters = tag.getParameters();
enhancer.insertMethodAttribute(javaMethod, new CustomAttribute(name, value, null));
log("method [" + javaMethod.getParentClass().getFullyQualifiedName() + '.' + javaMethod.getName() + ']');
log("\tattribute [" + name + ' ' + value + ']');
}
// set the hidden class level tag to allow early class filtering at TF time
if (tags.length > 0) {