This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 28550 - Conversion NbFrameOperator to JInternalFrameOperator doesn't work
Summary: Conversion NbFrameOperator to JInternalFrameOperator doesn't work
Status: CLOSED FIXED
Alias: None
Product: qa
Classification: Unclassified
Component: Jellytools (show other bugs)
Version: 3.x
Hardware: All All
: P2 blocker (vote)
Assignee: issues@qa
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-11-07 08:42 UTC by Marian Mirilovic
Modified: 2002-11-07 09:35 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
test case (528 bytes, text/plain)
2002-11-07 08:43 UTC, Marian Mirilovic
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Marian Mirilovic 2002-11-07 08:42:34 UTC
I tried use conversion described by Jirka S. in
issue 28145 :
NbFrameOperator frame = new
NbFrameOperator("Explorer");
JInternalFrameOperator intFrame = new
JInternalFrameOperator(frame);

but it doesn't work - fails with
TimeoutExpiredException, run attached test case.
Comment 1 Marian Mirilovic 2002-11-07 08:43:47 UTC
Created attachment 7878 [details]
test case
Comment 2 Jiri Skrivanek 2002-11-07 09:09:58 UTC
It was my fault. You need to use a different constructor:

new JInternalFrameOperator((JInternalFrame)frame.getSource());
Comment 3 Marian Mirilovic 2002-11-07 09:26:14 UTC
yes, it works fine, thanks.
verified