/* */ public Object resolveAnnotation(Constructor c, Class annotation)
/* */ {
/* 490 */ Object value = null;
/* 491 */ if (this.metadata != null)
/* */ {
/* 493 */ ConstructorSignature signature = new ConstructorSignature(c);
/* 494 */ MetaData conMD = this.metadata.getComponentMetaData(signature);
/* 495 */ if (conMD != null)
/* */ {
/* 497 */ value = conMD.getAnnotation(annotation);
/* 498 */ if (value != null) return value;