106107108109110111112
doTest(new DecapitalizeNameMapper(), "decapitalize name mapper"); } public void testDefaultElementMapper() throws Exception { // testLog.debug("Testing default name mapper"); doTest(new DefaultNameMapper(), "default name mapper"); }
505506507508509510511
* used to convert bean type names into element names. * * @return new default NameMapper implementation */ protected NameMapper createNameMapper() { return new DefaultNameMapper(); }