Bug 195910

Summary: JDT cannot do code hint in variable innerclass
Product: [Eclipse Project] JDT Reporter: Xiang Qinxian <fyaoxy>
Component: CoreAssignee: David Audel <david_audel>
Status: CLOSED DUPLICATE QA Contact:
Severity: normal    
Priority: P3 CC: daniel_megert
Version: 3.3   
Target Milestone: 3.4 M7   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Xiang Qinxian CLA 2007-07-09 19:15:32 EDT
Build ID: I20070625-1500

Steps To Reproduce:
import java.util.ArrayList;
import java.util.List;

public class Test {
	private Runnable task = new Runnable(){
		@Override
		public void run() {
			List<String> ss = new ArrayList<String>();
			for(String s: ss){
				s.
			}
		}
	};
}
As you can see, s. cannot get hint of code.
And sometime import seems not work, maybe in same enviroment.

More information:
run in win32.
seem in linux fc7, autoimport not always work.
Comment 1 David Audel CLA 2007-07-10 08:11:09 EDT

*** This bug has been marked as a duplicate of bug 193045 ***
Comment 2 Xiang Qinxian CLA 2008-02-04 18:07:47 EST
a duplicate