Examples of XmlElementsAndXmlAnyElement


Examples of org.jboss.test.xb.builder.object.type.xmlanyelement.support.XmlElementsAndXmlAnyElement

      super(name);
   }

   public void testUnmarshalling() throws Exception
   {
      XmlElementsAndXmlAnyElement o = unmarshalObject(XmlElementsAndXmlAnyElement.class);
      List<Object> list = o.getList();
      assertNotNull(list);
      assertEquals(3, list.size());
      assertEquals(11, list.get(0));
      assertEquals("22", list.get(1));
      assertTrue(list.get(2) instanceof XmlElementsAndXmlAnyElement);
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.