Package com.github.overengineer.container.util

Examples of com.github.overengineer.container.util.ParameterRef


        if (((ParameterizedType) targetType).getActualTypeArguments().length > 1) {
            throw new MissingDependencyException(key);
        }

        //TODO this is slow, refactor to cache the type in the key and to reuse the strategy
        Key parameterizedKey = Locksmith.makeKey(new ParameterRef() {
            @Override
            public Type getType() {
                return ((ParameterizedType) key.getType()).getActualTypeArguments()[0];
            }
        }, key.getQualifier());
View Full Code Here

TOP

Related Classes of com.github.overengineer.container.util.ParameterRef

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.