Skip to:
The code sample in the section 5.3. Custom Strategy in the Hibernate Tools documentation has a public constructor as follows:
public ExampleStrategy(ReverseEngineeringStrategy delegate) {super(delegate);}
When implemented, this doesn't seem to work unless the delegate parameter is marked as final, eg:
public ExampleStrategy(final ReverseEngineeringStrategy delegate) {super(delegate);}
works fine thus rejected.
you will need to tell me more about what " this doesn't seem to work " means.
The code sample in the section 5.3. Custom Strategy in the Hibernate Tools documentation has a public constructor as follows:
public ExampleStrategy(ReverseEngineeringStrategy delegate) {
super(delegate);
}
When implemented, this doesn't seem to work unless the delegate parameter is marked as final, eg:
public ExampleStrategy(final ReverseEngineeringStrategy delegate) {
super(delegate);
}