Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 366470

Summary: unable to navigate to static itd
Product: [Tools] AJDT Reporter: Andrew Clement <aclement>
Component: UIAssignee: AJDT-inbox <AJDT-inbox>
Status: CLOSED DUPLICATE QA Contact:
Severity: normal    
Priority: P3 CC: andrew.eisenberg
Version: DEVELOPMENT   
Target Milestone: 2.1.3   
Hardware: PC   
OS: Mac OS X - Carbon (unsup.)   
Whiteboard:

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