Package org.apache.felix.ipojo.manipulator.spi

Examples of org.apache.felix.ipojo.manipulator.spi.BindingContext


        chained.getVisitors().addAll(visitors);
        return chained;
    }

    private List<AnnotationVisitor> list() {
        BindingContext context;

        if (elementType == ElementType.FIELD) {
            context = new BindingContext(workbench, reporter, Type.getType(annotation), field,
                    elementType, index, visitor);
        } else if (elementType == ElementType.TYPE) {
            context = new BindingContext(workbench, reporter, Type.getType(annotation), clazz,
                    elementType, index, visitor);
        } else {
            // Parameter of method.
            context = new BindingContext(workbench, reporter, Type.getType(annotation), method,
                    elementType, index, visitor);
        }


        List<Binding> predicates = registry.getBindings(annotation);
View Full Code Here

TOP

Related Classes of org.apache.felix.ipojo.manipulator.spi.BindingContext

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.