Package org.apache.ws.jaxme.test.bindings.vo

Examples of org.apache.ws.jaxme.test.bindings.vo.ObjectFactory


  /**
   * Tests, whether the binding has moved the schema to the proper
   * package and whether the string constants have been created.
   */
  public void testBindings() throws Exception {
    FooType foo = new ObjectFactory().createFoo();
    foo.setBar(YesNoTypeClass.YES);
    foo.setBool(Boolean.TRUE);
    ImpFooType impFoo = new org.apache.ws.jaxme.test.bindings.imported.vo.ObjectFactory().createImpFoo();
    impFoo.setXyz(org.apache.ws.jaxme.test.bindings.imported.vo.YesNoTypeClass.NO);
    impFoo.setRequiredLong(1L);
View Full Code Here

TOP

Related Classes of org.apache.ws.jaxme.test.bindings.vo.ObjectFactory

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.