Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 366470 - unable to navigate to static itd
Summary: unable to navigate to static itd
Status: CLOSED DUPLICATE of bug 361876
Alias: None
Product: AJDT
Classification: Tools
Component: UI (show other bugs)
Version: DEVELOPMENT   Edit
Hardware: PC Mac OS X - Carbon (unsup.)
: P3 normal (vote)
Target Milestone: 2.1.3   Edit
Assignee: AJDT-inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-12-12 17:58 EST by Andrew Clement CLA
Modified: 2011-12-12 19:43 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Clement CLA 2011-12-12 17:58:05 EST
The aspect:

import java.util.Collection;

public aspect EnrolerHelperAspect {
	
  public static void Enroler.collectAllRoles(Collection roles) {
  }
  
}

The target:
import java.util.ArrayList;
import java.util.Collection;

public class Enroler {

	public static Collection<? extends Role> getAllRoles() {
		Collection result = new ArrayList<Role>(2);
		collectAllRoles(result);
		return result;
	}

}

I can't select the 'collectAllRoles' call in the class and navigate back to the ITD in the aspect.
Comment 1 Andrew Eisenberg CLA 2011-12-12 19:38:25 EST
Appears to be fixed in latest dev build.
Comment 2 Andrew Eisenberg CLA 2011-12-12 19:43:22 EST
Fixed along with the fix for Bug 361876.

*** This bug has been marked as a duplicate of bug 361876 ***