Re: (Bug?) JDev 9.0.3 / UI Debugger, no representation of JDialog within UI Tree
Date: Thu, 27 Feb 2003 23:42:53 +0100
Message-ID: <pan.2003.02.27.22.42.53.551642_at_nospam.nowhere.com>
[Quoted] On Wed, 26 Feb 2003 05:29:46 +0000, Raffael Vogler wrote:
> Thank you for your suggestion.
> I'm not sure what you mean by saying "exposed".
> I declared and initialized (JDialog jDlg = new JDialog()) the
> JDialog-Object together with all the other Components within the
> Main-JFrame-Class.
> Best regards, Raffael Vogler
I meant this:
say the dialog has a child component okButton.
To access this button the dialog frame would need to have a method similar to this:
JPushButton getOkButton();
This method would have to be public or at least protected.
That way you could use the method as the accessor method to gain access to the button.
When you build GUI stuff in JDeveloper I seem to remember that there is no easy way of doing the above unless you actually add the code yourself.
Cheers,
dmz17 Received on Thu Feb 27 2003 - 23:42:53 CET