Examples of desc()


Examples of reportgen.cores.ejb.annotations.DefineQueryEntity.desc()

            desc = gen.desc();
        } else {
            DefineQueryEntity gene = (DefineQueryEntity) cls.getAnnotation(DefineQueryEntity.class);
            if(gene != null) {
                title = gene.title();
                desc = gene.desc();               
            } else {
                assert cls.isAnnotationPresent(Entity.class);
                title = cls.getSimpleName();
            }
        }
View Full Code Here

Examples of reportgen.cores.ejb.annotations.DefineQueryProperty.desc()

            Class c = f[i].getType();
            if(!c.isAnnotationPresent(Entity.class)
                    || gen == null) {
                    continue;
            }
            res.add(new QueryEntity(c, gen.title(), gen.desc(), f[i].getName(),
                    LinkageMode.forward, thisEntity, coreContextGroup));
        }

        //backlinked
        LinkedReportEntity[] linked = getEntitySet().getLinkedClasses(cls);
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.