Package org.objectweb.speedo.pobjects.fetchgroup

Examples of org.objectweb.speedo.pobjects.fetchgroup.Author


   * test the definition of a fetch-group in the jdo file with a a.b.c field
   * <field name="a.b.c">
   */
  public void testInheritanceReference() {
    logger.log(BasicLevel.DEBUG, "***************testInheritanceReference*****************");
    Author author1 = new Author("Marx", "Karl");
    Author author2 = new Author("Kissinger", "Henry");
   
    Editor editor1 = new Editor("Plon");
    Editor editor2 = new Editor("Robert");
   
    Style style1 = new Style("act", "action");
View Full Code Here


   * test the definition of a fetch-group in the jdo file with a a@X field
   * <field name="a" depth="1">
   */
  public void testInheritanceDepth() {
    logger.log(BasicLevel.DEBUG, "***************testInheritanceDepth*****************");
    Author author1 = new Author("Nyberg", "Carl");
    Author author2 = new Author("Levy", "Eric");
    Author author3 = new Author("Sudarshan", "Sam");
   
    University uni1 = new University("Wisconsin");
    University uni2 = new University("Arkansas");
    University uni3 = new University("Tokyo");
   
View Full Code Here

TOP

Related Classes of org.objectweb.speedo.pobjects.fetchgroup.Author

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.