Package org.grouplens.common.dto.HierarchyDto

Examples of org.grouplens.common.dto.HierarchyDto.SubclassDto


      "<subclass>\n" +
      "\t<inner>hello</inner>\n" +
      "\t<outer>world</outer>\n" +
      "</subclass>";

    SubclassDto dto = new SubclassDto();
    dto.inner = "hello";
    dto.outer = "world";

    runExportTest_Success(xml, false, dto);
  }
View Full Code Here


      "<subclass>\n" +
      "\t<inner>hello</inner>\n" +
      "\t<outer>world</outer>\n" +
      "</subclass>";

    SubclassDto dto = new SubclassDto();
    dto.inner = "hello";
    dto.outer = "world";

    runImportTest_Success(xml, false, dto);
  }
View Full Code Here

  }
 
  @Test
    public void testExport_ClassHierarchy_Success() throws Exception {
        String json = "{\"subclass\": {\"inner\": \"hello\", \"outer\": \"world\"}}";
        SubclassDto dto = new SubclassDto();
        dto.inner = "hello";
        dto.outer = "world";
       
        runExportTest_Success(json, false, dto);
    }
View Full Code Here

  }
 
  @Test
  public void testImport_ClassHierarchy_Success() throws Exception {
      String json = "{\"subclass\": {\"inner\": \"hello\", \"outer\": \"world\"}}";
      SubclassDto dto = new SubclassDto();
      dto.inner = "hello";
      dto.outer = "world";
     
      runImportTest_Success(json, false, dto);
  }
View Full Code Here

TOP

Related Classes of org.grouplens.common.dto.HierarchyDto.SubclassDto

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.