public String tableToClassName(TableIdentifier tableIdentifier) {
return super.tableToClassName( tableIdentifier ) + "Impl";
}
};
custom.setSettings( new ReverseEngineeringSettings(custom) );
TableIdentifier productTable = new TableIdentifier("product");
assertEquals("ProductImpl", custom.tableToClassName( productTable ));
assertEquals("productImpls", custom.foreignKeyToCollectionName("something", productTable, null, new TableIdentifier("order"), null, true ) );