Package com.softwaremill.common.cdi.autofactory.extension.parameter

Examples of com.softwaremill.common.cdi.autofactory.extension.parameter.BeanManagerParameterValue


    private ParameterValue createParameterValue(AnnotatedParameter parameter) {
        if (parameter.getAnnotation(FactoryParameter.class) != null) {
            return new FactoryParameterParameterValue(methodParameterIndexer.getIndexForArgument(parameter.getBaseType()));
        } else {
            return new BeanManagerParameterValue(parameter.getBaseType(), qualifierAnnotationsFilter.filter(parameter.getAnnotations()));
        }
    }
View Full Code Here

TOP

Related Classes of com.softwaremill.common.cdi.autofactory.extension.parameter.BeanManagerParameterValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.