Package jodd.util.testdata

Examples of jodd.util.testdata.A


    MutableInteger md = TypeConverterManager.convertType(s, MutableInteger.class);
    assertEquals(123, md.intValue());

    B b = new B();
    A a = TypeConverterManager.convertType(b, A.class);
    assertEquals(a, b);
  }
View Full Code Here

TOP

Related Classes of jodd.util.testdata.A

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.