Package org.jboss.test.xml.sandbox

Examples of org.jboss.test.xml.sandbox.Choice1


   private void assertUnmarshalled(Root unmarshalled)
   {
      Root root = new Root();
      root.setChoiceCollection1(
         Arrays.asList(new Object[]{new Choice1("choice1_a", null), new Choice1(null, "choice1_b")})
      );
      root.setChoice2(Arrays.asList(new Object[]{new Choice2("choice2_c", "choice2_d", null),
         new Choice2(null, "choice2_d", "choice2_e")
      }
      )
View Full Code Here


   private void assertUnmarshalled(Root unmarshalled)
   {
      Root root = new Root();
      root.setChoiceCollection1(
         Arrays.asList(new Object[]{new Choice1("choice1_a", null), new Choice1(null, "choice1_b")})
      );
      root.setChoice2(Arrays.asList(new Object[]{new Choice2("choice2_c", "choice2_d", null),
         new Choice2(null, "choice2_d", "choice2_e")
      }
      )
View Full Code Here

TOP

Related Classes of org.jboss.test.xml.sandbox.Choice1

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.