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

Bug 7169

Summary: Debug "F" keys not enabled properly on new editor
Product: [Eclipse Project] Platform Reporter: Darin Swanson <Darin_Swanson>
Component: DebugAssignee: Darin Wright <darin.eclipse>
Status: CLOSED INVALID QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: ---   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description Darin Swanson CLA 2001-12-22 16:35:10 EST
Use the following test program
step into System.out.println.
(with no source attached).
Opens new editor.
Attempt to use the "F" keys.

Setting the focus to the Test Java editor and then back to the
StringBuffer class file editor fixes the problem.

Source
public class Test {
	public static void main(String[] args) {
		new Test().loop();
	}
	
	protected void loop() {
		int i= 0;
		while (true) {			
			System.out.println("Looping" + i);
			i++;
			try {
				Thread.sleep(1000);
			} catch (InterruptedException e) {
			}
		}
	}
}
Comment 1 Darin Swanson CLA 2002-01-05 18:15:51 EST
Can no longer reproduce.
Comment 2 Darin Swanson CLA 2002-01-05 18:16:08 EST
Closed.