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 96016

Summary: [Refactoring-review-TCR] CustomRefactoringPanel should be interface, not abstract class
Product: editor Reporter: Jan Becicka <jbecicka>
Component: RefactoringAssignee: issues@java <issues>
Status: RESOLVED FIXED    
Severity: blocker CC: tpavek
Priority: P2    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:
Bug Depends on:    
Bug Blocks: 89605    

Description Jan Becicka 2007-02-20 11:59:23 UTC
See http://wiki.netbeans.org/wiki/view/RefactoringAPIReview
for details
Comment 1 Jan Becicka 2007-02-20 12:25:01 UTC
CustomRefactoringPanel is now interface. To rewrite your implementation
class Some extends CustomRefactoringPanel {
.
}
to
class Some extends JPanel implements CustomRefactoringPanel {
  public Component getComponent() {
    return this;
  }
.
.
.
}

See issue 95977 for CVS logs.