IConverterLocatorFactory no longer exists?

2008-01-12 Thread Karen Schaper
Hello, I am trying upgrade some code from the wicket-1.3.0-incubating-SNAPSHOT.jar to the latest wicket. It appears that the IConverterLocatorFactory no longer exists. I need to register a custom converter to the application. Here is my code which will not compile now

Re: IConverterLocatorFactory no longer exists?

2008-01-12 Thread Eelco Hillenius
. It appears that the IConverterLocatorFactory no longer exists. I need to register a custom converter to the application. Here is my code which will not compile now. . getApplicationSettings().setConverterLocatorFactory( new IConverterLocatorFactory() { public

Re: IConverterLocatorFactory no longer exists?

2008-01-12 Thread Eelco Hillenius
On Jan 12, 2008 3:52 PM, Eelco Hillenius [EMAIL PROTECTED] wrote: Yup, in your application override newConverterLocator and let it return the IConverterLocator instance you want. http://cwiki.apache.org/WICKET/migrate-13.html states this btw. In case you run into other things, you might want to

RE: IConverterLocatorFactory no longer exists?

2008-01-12 Thread Karen Schaper
: IConverterLocatorFactory no longer exists? On Jan 12, 2008 3:52 PM, Eelco Hillenius [EMAIL PROTECTED] wrote: Yup, in your application override newConverterLocator and let it return the IConverterLocator instance you want. http://cwiki.apache.org/WICKET/migrate-13.html states this btw. In case

Re: IConverterLocatorFactory no longer exists?

2008-01-12 Thread Eelco Hillenius
On Jan 12, 2008 5:20 PM, Karen Schaper [EMAIL PROTECTED] wrote: Thanks for pointing out this reference. Sorry though I should have been able to find this myself. No problem. Just mentioned that to save you some time in case you stumble against more such cases. Eelco