Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [ve-dev] About beans

Rich,
 
The problem was that explicitBean was returning NULL because ULCFiller had no properties and methods of its own.
It had to have some Descriptor. Introducing getBeanDescriptor solved the problem.
 
Thanks for the help.
 
Janak
-----Original Message-----
From: ve-dev-admin@xxxxxxxxxxx [mailto:ve-dev-admin@xxxxxxxxxxx]On Behalf Of Rich Kulp
Sent: Sunday, October 31, 2004 2:13 PM
To: ve-dev@xxxxxxxxxxx
Subject: RE: [ve-dev] About beans


Janek,

That means ULFillerBeanInfo is not being found. Are you sure ULCFillerBeanInfo.getProperties() is being called? Because if it is calling ULCFillerBeanInfo.getProperties(), then it must call ULCFillerBeanInfo.getAdditional (though actually it is calling IvjBeanInfo.getAdditional since ULCFillerBeanInfo is not overriding it).

Please step into the Introspector constructor when doing ULCFiller. Make sure that it is finding ULCFillerBeanInfo as the "explicitBeanInfo" and that it is calling getAdditional in there. That is where it does the call to getAdditional.

Rich


Back to the top