Package org.apache.cayenne.enhancer

Examples of org.apache.cayenne.enhancer.PersistentInterfaceVisitor


        // from here the code is copied essentially verbatim
        // from CayenneEnhancerVisitorFactory.

        // create enhancer chain
        PersistentInterfaceVisitor e1 = new PersistentInterfaceVisitor(out);
        JpaAccessorVisitor e2 = new JpaAccessorVisitor(e1, descriptor);

        // this ensures that both enhanced and original classes have compatible serialized
        // format even if no serialVersionUID is defined by the user
        SerialVersionUIDAdder e3 = new SerialVersionUIDAdder(e2);
View Full Code Here

TOP

Related Classes of org.apache.cayenne.enhancer.PersistentInterfaceVisitor

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.