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 32192 - Synchronize action produce different output
Summary: Synchronize action produce different output
Status: VERIFIED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: -S1S-
Hardware: PC Linux
: P3 blocker (vote)
Assignee: issues@java
URL:
Keywords: T9Y
Depends on:
Blocks:
 
Reported: 2003-03-21 16:06 UTC by Martin Schovanek
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 Martin Schovanek 2003-03-21 16:06:10 UTC
[Nb build 200303182350, jdk1.4.1]

Synchronize action produce different output
according to sources are mounted or not.

e.g. for:

public class Main implements
org.xml.sax.ContentHandler {

}

when src.zip is not mounted produce:
...
public void endDocument() throws
org.xml.sax.SAXException {
}
...

when src.zip is mounted produce:
...
public void endDocument() throws SAXException {
}
...
Comment 1 Martin Schovanek 2003-03-21 16:08:01 UTC
Testabilty issue.
Comment 2 Tomas Hurka 2003-04-03 15:00:11 UTC
You are right. It seems to me that this is very similar to issue #25957
Comment 3 Martin Matula 2004-07-28 12:45:10 UTC
Now the names produced by synchronization tool are always fully
qualified. So this issue is fixed. But according to the issue 44325
the synchronize action should try to use short names if possible. Dan
will fix this - the action should still generate same code not
depending on whether src.zip is available or not.
Comment 4 Martin Schovanek 2006-08-03 18:03:48 UTC
v.