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

Examples of org.apache.ws.jaxme.test.bindings.imported.vo.ImpFooType


   */
  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);
        impFoo.setOptionalLong(new Long(1));
  }
View Full Code Here

TOP

Related Classes of org.apache.ws.jaxme.test.bindings.imported.vo.ImpFooType

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.