Bug 11355

Summary: OpenOnSelection unable to perform in single-type import
Product: [Eclipse Project] JDT Reporter: Philipe Mulet <philippe_mulet>
Component: CoreAssignee: David Audel <david_audel>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P2 CC: akiezun
Version: 2.0   
Target Milestone: 2.0 M4   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description Philipe Mulet CLA 2002-03-14 10:35:10 EST
Build 20020312

When selecting any of the type simple name in the imports of the following unit,
no selection is computed.

[package p1;

import javax.swing.JTable;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableModel;

public class X
{
 public class AA extends JTable
 {
  public AA(TableModel model)
  {
   super(new TestModel());
  }
 }

 public class TestModel extends DefaultTableModel
 {
 }
}
 ]
Comment 1 David Audel CLA 2002-03-14 11:34:01 EST
accumulated qualified results was not accepted.

Fixed.
Comment 2 David Audel CLA 2002-03-20 07:48:48 EST
*** Bug 11340 has been marked as a duplicate of this bug. ***