* @return the list (in order) of parameters to the constructor
*/
public static List<Injectee> getConstructorInjectees(Constructor<?> c, ActiveDescriptor<?> injecteeDescriptor) {
Type genericTypeParams[] = c.getGenericParameterTypes();
Annotation paramAnnotations[][] = c.getParameterAnnotations();
Unqualified unqualified = c.getAnnotation(Unqualified.class);
List<Injectee> retVal = new LinkedList<Injectee>();
for (int lcv = 0; lcv < genericTypeParams.length; lcv++) {
retVal.add(new InjecteeImpl(genericTypeParams[lcv],