All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.classmate.members.ResolvedConstructor Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package com.fasterxml.classmate.members;

import java.lang.reflect.Constructor;

import com.fasterxml.classmate.Annotations;
import com.fasterxml.classmate.ResolvedType;

/**
 * Class that represents a constructor that has fully resolved generic
 * type information and annotation information.
 */
public final class ResolvedConstructor extends ResolvedParameterizedMember>
{
    public ResolvedConstructor(ResolvedType context, Annotations ann, Constructor constructor,
            ResolvedType[] argumentTypes)
    {
        super(context, ann, constructor, null, argumentTypes);
    }

    /*
    /**********************************************************************
    /* Simple accessors
    /**********************************************************************
     */

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy