Package org.apache.sling.models.annotations.injectorspecific

Examples of org.apache.sling.models.annotations.injectorspecific.ValueMapValue


    }

    @Override
    public InjectAnnotationProcessor createAnnotationProcessor(Object adaptable, AnnotatedElement element) {
        // check if the element has the expected annotation
        ValueMapValue annotation = element.getAnnotation(ValueMapValue.class);
        if (annotation != null) {
            return new ValueAnnotationProcessor(annotation, adaptable);
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.models.annotations.injectorspecific.ValueMapValue

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.