A default implementation of the name mapper. This mapper simply returns the unmodified type name.
For example, PropertyName would be converted to PropertyName. @author James Strachan @version $Revision: 438373 $
PropertyName
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(); }