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 48148 - Fast open done in background task without any progress indication
Summary: Fast open done in background task without any progress indication
Status: CLOSED FIXED
Alias: None
Product: editor
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 4.x
Hardware: PC All
: P2 blocker (vote)
Assignee: Dusan Balek
URL:
Keywords: PERFORMANCE
Depends on:
Blocks:
 
Reported: 2004-08-30 12:03 UTC by Antonin Nebuzelsky
Modified: 2007-11-05 13:44 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Antonin Nebuzelsky 2004-08-30 12:03:51 UTC
Fast open can take quite a long time, especially
for the first time after IDE start. There is no
progress indication at all before the document is
opened in editor and the user may be wondering if
the action is in progress or not. At least the
hour-glass cursor must be used.
Comment 1 psuk 2004-08-31 10:35:34 UTC
Dusan is looking into that.
Comment 2 Dusan Balek 2004-08-31 14:44:07 UTC
Fixed in [maintrunk].

Checking in JMIUtils.java;
/cvs/editor/src/org/netbeans/modules/editor/java/JMIUtils.java,v  <--
 JMIUtils.java
new revision: 1.46; previous revision: 1.45
done
Comment 3 Antonin Nebuzelsky 2004-09-02 14:07:14 UTC
Still not good from UI responsiveness point of view. The hour-glass
cursor is displayed only in the editor pane after it is opened.

Given the fact that we cannot display global hour-glass cursor, let's
add a message to the global Status Line. IMHO the message could be
"Opening class $CLASSNAME..." and it should be deleted from the Status
Line after the opening finishes.
Comment 4 Dusan Balek 2004-09-02 15:18:22 UTC
Fixed in [maintrunk] as suggested.

Checking in Bundle.properties;
/cvs/editor/src/org/netbeans/modules/editor/java/Bundle.properties,v 
<--  Bundle.properties
new revision: 1.74; previous revision: 1.73
done
Checking in JMIUtils.java;
/cvs/editor/src/org/netbeans/modules/editor/java/JMIUtils.java,v  <--
 JMIUtils.java
new revision: 1.49; previous revision: 1.48
done
Comment 5 Antonin Nebuzelsky 2004-09-03 11:21:23 UTC
Looks better. Thanks.