Package ch.inftec.ju.util.xml.ns.main

Examples of ch.inftec.ju.util.xml.ns.main.ComplexRoot


     
      TestUtils.assertEqualsXmlResource("XmlUtilsJaxbTest_canMarshall_object_withMultipleNamespaces_andCustomDefaultPrefix.xml", xml);
  }
 
  private ComplexRoot getComplexRoot() {
    ComplexRoot cr = new ComplexRoot();
    cr.setName("name");
    cr.setAge(BigInteger.valueOf(17L));
    cr.setRefName(new RefNameType());
    cr.getRefName().setFirstName("firstName");
    cr.getRefName().setLastName("lastName");
    return cr;
  }
View Full Code Here

TOP

Related Classes of ch.inftec.ju.util.xml.ns.main.ComplexRoot

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.