Package de.odysseus.staxon.json.jaxb.JsonXMLBinderTest

Examples of de.odysseus.staxon.json.jaxb.JsonXMLBinderTest.EmptyType


    Assert.assertEquals(new QName("sampleType"), sampleType.getName());
    Assert.assertEquals(SampleType.class, sampleType.getDeclaredType());
    JAXBElement<?> sampleTypeWithNamespace = provider.createElement(SampleTypeWithNamespace.class, new SampleTypeWithNamespace());
    Assert.assertEquals(new QName("urn:staxon:jaxb:test", "sampleTypeWithNamespace"), sampleTypeWithNamespace.getName());
    Assert.assertEquals(SampleTypeWithNamespace.class, sampleTypeWithNamespace.getDeclaredType());
    Assert.assertNull(provider.createElement(EmptyType.class, new EmptyType()));
  }
View Full Code Here

TOP

Related Classes of de.odysseus.staxon.json.jaxb.JsonXMLBinderTest.EmptyType

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.