Bug 195910 - JDT cannot do code hint in variable innerclass
Summary: JDT cannot do code hint in variable innerclass
Status: CLOSED DUPLICATE of bug 193045
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.4 M7   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-07-09 19:15 EDT by Xiang Qinxian CLA
Modified: 2008-04-04 09:59 EDT (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 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