Package org.apache.isis.applib.annotation

Examples of org.apache.isis.applib.annotation.Cached


    public CachedAnnotationFactory() {
        super(CachedAnnotation.class);
    }

    public Annotation process(final Class clazz) {
        Cached annotation = (Cached) clazz.getAnnotation(Cached.class);
        return create(annotation);
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.applib.annotation.Cached

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.