Examples of CDSequence


Examples of org.jboss.test.xml.elementorder.support.CDSequence

   {
      ElementOrderRoot o = (ElementOrderRoot) unmarshalObject(ElementOrderRoot.class);
      List<CDSequence> repeatedCD = o.getRepeatedCD();
      assertNotNull(repeatedCD);
      assertEquals(2, repeatedCD.size());
      CDSequence cd = repeatedCD.get(0);
      assertNotNull(cd);
      assertEquals("c1", cd.getC());
      assertEquals("d1", cd.getD());
      cd = repeatedCD.get(1);
      assertNotNull(cd);
      assertEquals("c2", cd.getC());
      assertEquals("d2", cd.getD());
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.