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 12899 - Synchronization does not work properly
Summary: Synchronization does not work properly
Status: CLOSED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 3.x
Hardware: PC Windows ME/2000
: P3 blocker (vote)
Assignee: issues@java
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-06-15 14:56 UTC by Jan Becicka
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 Jan Becicka 2001-06-15 14:56:14 UTC
[dev-211]
let's have:
public interface RootInterface {
  public int method1FromRootInterface();
  public String method2FromRootInterface(int x,int y);
  public boolean method3FromRootInterface(String a, String b);
}

public interface Interface1 extends RootInterface {
    public int methodFromInterface(String a); 
}


Now, create class B which implements Interface1. These methods should by added 
by Synchronize Tool:
  public int method1FromRootInterface();
  public String method2FromRootInterface(int x,int y);
  public boolean method3FromRootInterface(String a, String b);
  public int methodFromInterface(String a); 

but only
  public int method1FromRootInterface();
  public String method2FromRootInterface(int x,int y);
  public boolean method3FromRootInterface(String a, String b);

are added.
Comment 1 Svata Dedic 2001-08-24 07:16:46 UTC
I know that the bug was there. But it seems to be fixed along with 
other synchronization bugs during July.
Comment 2 Jan Becicka 2001-10-03 15:18:49 UTC
[200110030100] Verified
Comment 3 Quality Engineering 2003-07-01 13:15:36 UTC
Resolved for 3.4.x or earlier, no new info since then -> closing.