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

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


    }

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

TOP

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

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.