Package org.objectweb.speedo.pobjects.fetchgroup

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


   * <field name="a.b.c">
   */
  public void testLoadingReference() {
    logger.log(BasicLevel.DEBUG, "***************testLoadingReference*****************");
    Country country = new Country("it","Italie");
    Address address = new Address("Rue Spiaggi", "Milan", country);
    Person parent = new Person();
    parent.setName("Del Piero Joel");
    parent.setAge(32);
    parent.setAddress(address);
    Person child1 = new Person("Del Piero Sophie", address, null, 14);
View Full Code Here


   * <field name="a#element.b">
   */
  public void testLoadingArrayElement() {
    logger.log(BasicLevel.DEBUG, "************testLoadingArrayElement**************");
    Country country = new Country("be","Belgique");
    Address address = new Address("Rue Anvers", "Bruges", country);
    Person parent = new Person();
    parent.setName("Dermuck Joel");
    parent.setAge(32);
    parent.setAddress(address);
    Person child1 = new Person("Dermuck Sophie", address, null, 14);
View Full Code Here

   * <field name="a" fetch-group="fg"/>
   */
  public void testLoadingFetchGroupField() {
    logger.log(BasicLevel.DEBUG, "************testLoadingFetchGroupField**************");
    Country country = new Country("us","Etats-Unis");
    Address address = new Address("Rue Enclif", "San Diego", country);
    Person parent = new Person();
    parent.setName("Smith Joel");
    parent.setAge(32);
    parent.setAddress(address);
    Person child1 = new Person("Smith Sofia", address, null, 14);
View Full Code Here

   * <field name="a" depth="X"/>
   */
  public void testLoadingRecursiveDepth() {
    logger.log(BasicLevel.DEBUG, "************testLoadingRecursiveDepth**************");
    Country country = new Country("sp","Espagne");
    Address address = new Address("Rue Rio", "Santander", country);
    Person parent = new Person();
    parent.setName("Casillas Joel");
    parent.setAge(63);
    parent.setAddress(address);
    Person child1 = new Person("Casillas Sofia", address, null, 30);
View Full Code Here

   * <field name="a" depth="X"/>
   */
  public void testLoadingDoubleDepth() {
    logger.log(BasicLevel.DEBUG, "************testLoadingDoubleDepth**************");
    Country country = new Country("bl","Belarus");
    Address address = new Address("Rue Kaloc", "Minsk", country);
    Person parent = new Person();
    parent.setName("Castuk Joel");
    parent.setAge(63);
    parent.setAddress(address);
    Person child1 = new Person("Castuk Sofia", address, null, 30);
View Full Code Here

   * <field name="a" depth="X"/>
   */
  public void testLoadingDoubleDepthUnlimited() {
    logger.log(BasicLevel.DEBUG, "************testLoadingDoubleDepthUnlimited**************");
    Country country = new Country("p","Portugal");
    Address address = new Address("Rue Christiano", "Lisbonne", country);
    Person parent = new Person();
    parent.setName("Simoes Joel");
    parent.setAge(63);
    parent.setAddress(address);
    Person child1 = new Person("Simoes Sofia", address, null, 30);
View Full Code Here

TOP

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

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.