Package cn.com.annotations

Examples of cn.com.annotations.Groups.groups()


        this.template = (Template) this.clazz.getAnnotation(Template.class);

        Groups groupsAnnotation = (Groups) this.clazz.getAnnotation(Groups.class);
        if (groupsAnnotation != null) {
            // 保存显示定义的组
            groups.addAll(Arrays.asList(groupsAnnotation.groups()));
        }
        // 保存默认组
        groups.add(getDefaultGroup());

        // 设定当前组
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.