Package org.jrebirth.af.core.annotation

Examples of org.jrebirth.af.core.annotation.SkipAnnotation


     *
     * @return true if annotation can be processed
     */
    public static boolean canProcessAnnotation(final Class<? extends WaveReady<?>> componentClass) {

        final SkipAnnotation skip = ClassUtility.getLastClassAnnotation(componentClass, SkipAnnotation.class);

        // No annotation or annotation deactivated ==> skip annotation processing
        return !(skip == null || skip.value());
    }
View Full Code Here

TOP

Related Classes of org.jrebirth.af.core.annotation.SkipAnnotation

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.