Examples of Adapted


Examples of org.jboss.test.xb.builder.object.type.xmltype.adapter.Adapted

      super(name);
   }

   public void testAdaptedUnmarshal() throws Exception
   {
      Adapted result = unmarshalObject(Adapted.class);
      // Class should have been changed by the adapter
      assertTrue(result instanceof AdaptedSubclass);
      // Properties should have been swapped by the adapter
      assertEquals("property1", result.property2);
      assertEquals("property2", result.property1);
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.