1 package com.fasterxml.classmate.members;
2
3 import java.lang.reflect.Constructor;
4
5 import com.fasterxml.classmate.Annotations;
6 import com.fasterxml.classmate.ResolvedType;
7
8 /**
9  * Class that represents a constructor that has fully resolved generic
10  * type information and annotation information.
11  */

12 public final class ResolvedConstructor extends ResolvedParameterizedMember<Constructor<?>>
13 {
14     public ResolvedConstructor(ResolvedType context, Annotations ann, Constructor<?> constructor,
15             ResolvedType[] argumentTypes)
16     {
17         super(context, ann, constructor, null, argumentTypes);
18     }
19
20     /*
21     /**********************************************************************
22     /* Simple accessors
23     /**********************************************************************
24      */

25
26 }
27