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

org.infinispan.cdi.util.annotatedtypebuilder.AnnotatedFieldImpl Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.cdi.util.annotatedtypebuilder;

import javax.enterprise.inject.spi.AnnotatedField;
import javax.enterprise.inject.spi.AnnotatedType;
import java.lang.reflect.Field;
import java.lang.reflect.Type;

/**
 * @author Stuart Douglas
 */
class AnnotatedFieldImpl extends AnnotatedMemberImpl implements AnnotatedField {

    AnnotatedFieldImpl(AnnotatedType declaringType, Field field, AnnotationStore annotations, Type overridenType) {
        super(declaringType, field, field.getType(), annotations, field.getGenericType(), overridenType);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy