Package org.apache.isis.applib.annotation

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


       
        final MemberGroupLayout mglAnnot = Annotations.getAnnotation(cls, MemberGroupLayout.class);
        if (mglAnnot != null) {
            return new MemberGroupLayoutFacetAnnotation(mglAnnot, holder);
        }
        final MemberGroups mgAnnot = Annotations.getAnnotation(cls, MemberGroups.class);
        if (mgAnnot != null) {
            return new MemberGroupsFacetAnnotation(mgAnnot, processClassContext.getFacetHolder());
        }
        return new MemberGroupLayoutFacetFallback(holder);
    }
View Full Code Here


       
        final MemberGroupLayout mglAnnot = Annotations.getAnnotation(cls, MemberGroupLayout.class);
        if (mglAnnot != null) {
            return new MemberGroupLayoutFacetAnnotation(mglAnnot, holder);
        }
        final MemberGroups mgAnnot = Annotations.getAnnotation(cls, MemberGroups.class);
        if (mgAnnot != null) {
            return new MemberGroupsFacetAnnotation(mgAnnot, processClassContext.getFacetHolder());
        }
        return new MemberGroupLayoutFacetFallback(holder);
    }
View Full Code Here

TOP

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

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.