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 58969 - Cannot synchronize inner class with inner interface
Summary: Cannot synchronize inner class with inner interface
Status: CLOSED INVALID
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 4.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@java
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-05-17 09:23 UTC by Milan Kubec
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 Milan Kubec 2005-05-17 09:23:42 UTC
[NetBeans 4.1, JDK 1.5.0_03]

Put following code into some java class:

    class InnerClass implements InnerInterface {
        private String field;
        public int method() {
            return 0;
        }
    }
    
    interface InnerInterface {
        public int method();
        public String anotherMethod();
    }

Invoking Tools | Synchronize on the InnerClass class node in Explorer has no
efect on the class.
Comment 1 Jan Becicka 2005-08-22 15:55:49 UTC
Tools->Synchronize was removed. This bug is not valid any more.
Comment 2 Milan Kubec 2005-10-31 12:14:24 UTC
V