Bug 175362 - Interface method implementation not found in quick type hierarchy
Summary: Interface method implementation not found in quick type hierarchy
Status: RESOLVED INVALID
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.3   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.3 M6   Edit
Assignee: Frederic Fusier CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-02-23 15:10 EST by Koen van Dijken CLA
Modified: 2007-02-24 04:54 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Koen van Dijken CLA 2007-02-23 15:10:56 EST
Build ID: I20061102-1715

Steps To Reproduce:
1. Open org.eclipse.core.resources.IFile
2. select any of the two createLink methods in the editor
3. Ctrl-T (quick type hierarchy)

The implementation of this method is not found. It is implemented in Resource before the IFile interface is introduced in the type hierarchy (in File).
Comment 1 Frederic Fusier CLA 2007-02-24 04:54:51 EST
This is the expected behavior as Resource is not in the hierarchy of IFile... So, you cannot expect to reach the Resource.createLink(...) method using this shortcut.

Search for declaration of this method in the workspace or in the project finds the correct match in Resource.