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 - [Refactoring-review-TCR] CustomRefactoringPanel should be interface, not abstract class
Summary: [Refactoring-review-TCR] CustomRefactoringPanel should be interface, not abst...
Status: RESOLVED FIXED
Alias: None
Product: editor
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: issues@java
URL:
Keywords:
Depends on:
Blocks: 89605
  Show dependency tree
 
Reported: 2007-02-20 11:59 UTC by Jan Becicka
Modified: 2007-04-03 18:02 UTC (History)
1 user (show)

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 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.