Package jodd.json.model

Examples of jodd.json.model.ListContainer


  }

  @Test
  public void testSimpleShallowWithListInObject() {
    JsonSerializer serializer = new JsonSerializer();
    ListContainer wrapper = new ListContainer();
    wrapper.setName("Joe Blow");
    wrapper.setPeople(people);
    String peopleJson = serializer.serialize(wrapper);
    assertFalse(peopleJson.contains("["));
  }
View Full Code Here

TOP

Related Classes of jodd.json.model.ListContainer

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.