Examples of AnyAttributes


Examples of org.jboss.test.xb.builder.object.anyattribute.support.AnyAttributes

      super(name);
   }
  
   public void testUnmarshal() throws Exception
   {
      AnyAttributes result = unmarshalObject(AnyAttributes.class);
      assertEquals("static", result.getStaticAttribute());
      Map<QName, Object> anyAttributes = result.getAnyAttributes();
      assertNotNull(anyAttributes);
      assertEquals(2, anyAttributes.size());
     
      Object value = anyAttributes.get(new QName("attr1"));
      assertEquals("value1", value);
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.