Skip to main content

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

Rich,
 
I debugged it with breakpoints in IvjBeanInfo.getAdditional:
 
The thing is that for ULCFiller the Introspector does not call getAdditional method at all, it calls that method for its super.
(ULCComponent). I fail to understabd why.
 
However for ULCLabel getAdditional method is called and the subsequent call to override.
 
Does this piece of info help in any way?
 
Thanks,
 
Janak
-----Original Message-----
From: ve-dev-admin@xxxxxxxxxxx [mailto:ve-dev-admin@xxxxxxxxxxx]On Behalf Of Rich Kulp
Sent: Friday, October 29, 2004 6:22 PM
To: ve-dev@xxxxxxxxxxx
Subject: RE: [ve-dev] About beans


Janek,

There is only one way from the code you given me that the over call would not be made, and that is if in IvjBeanInfo.getAdditionalBeanInfo() this failed and threw an exception:

                BeanInfo[] result = new BeanInfo[] {
                        Introspector.getBeanInfo(getBeanClass().getSuperclass())
                };


Rich

Back to the top