*/
public class XmlTypeTest extends TestCase {
public void testSimpleXmlTypeBean() throws Exception {
final JSONJAXBContext ctx = new JSONJAXBContext(SimpleXmlTypeBean.class);
final JSONMarshaller jm = ctx.createJSONMarshaller();
final JSONUnmarshaller ju = ctx.createJSONUnmarshaller();
final StringWriter sw = new StringWriter();
final SimpleXmlTypeBean one= JSONTestHelper.createTestInstance(SimpleXmlTypeBean.class);
SimpleXmlTypeBean two;
jm.marshallToJSON(new JAXBElement<SimpleXmlTypeBean>(new QName("test"), SimpleXmlTypeBean.class, one), sw);