Package org.jboss.weld.util.reflection

Examples of org.jboss.weld.util.reflection.HierarchyDiscovery


    }

    public Set<Type> getInterfaceClosure(Class<?> rawType) {
        Set<Type> types = new HashSet<Type>();
        for (Type t : rawType.getGenericInterfaces()) {
            types.addAll(new HierarchyDiscovery(t).getTypeClosure());
        }
       
        return types;
    }
View Full Code Here

TOP

Related Classes of org.jboss.weld.util.reflection.HierarchyDiscovery

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.