Package org.caffinitas.mapper.annotations

Examples of org.caffinitas.mapper.annotations.CEntity


            c = c.getSuperclass();
            if (c == Object.class) {
                break;
            }

            CEntity superEntity = c.getAnnotation(CEntity.class);
            if (superEntity != null) {
                ParseEntity parseEntitySuper = addEntityInternal(c);
                parseEntity.mapSuperEntity(parseEntitySuper);
                break;
            }
View Full Code Here

TOP

Related Classes of org.caffinitas.mapper.annotations.CEntity

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.