I am writing an applet for which I've I've created a fairly simple javabean.
The bean has a property "lottoStyle" which is a typesafe enum (class
LottoStyle) that can be any one of 5 different values.
I've registered a PropertyEditor for this property, but JB's UI designer
seems to have a problem with it when I select the bean in the applet or if I
display the bean in the UI designer. I get a whole bunch of the following
errors in the Messages window:-
"java.lang.ClassNotFoundException: .LottoStyle
createDefaultPropertyEditor(.LottoStyle)"
I can't find any reference to a "createDefaultPropertyEditor()" method
anywhere. Can anyone tell me what's going wrong??