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 41103 - error anotation is not updated after change is another document
Summary: error anotation is not updated after change is another document
Status: VERIFIED DUPLICATE of bug 32882
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 3.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@java
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-03-18 10:54 UTC by pzajac
Modified: 2007-09-26 09:14 UTC (History)
0 users

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 pzajac 2004-03-18 10:54:42 UTC
[nb36rc1]
Steps to reproduction:
1) Create new Java file:
interface Something {
  public Unknown aMethod();
}

2) Save file. The Unknown class doesn't exist.
line 
public Unknown aMethod() ;
is anotated with error. 

3) Create Unknown class;
public class Unknown {
}
4) Compile Unknown  and Something class.  The
error annotation still exists in Something editor.
Comment 1 Miloslav Metelka 2004-03-18 15:27:56 UTC
Not sure whether this is related to changes in the parsing once focus
is switched between files. Rassigning to java for evaluation.
Comment 2 Jan Pokorsky 2004-03-18 17:01:08 UTC
Known issue. Due to performance reasons the parser is triggered just
by changes in editor document and not by compilation and not by
gaining focus to editor. MDR should help here in promo-D.

*** This issue has been marked as a duplicate of 32882 ***
Comment 3 pzajac 2004-03-31 15:13:23 UTC
v