Bug 4972

Summary: move CU creates imports at wrong position
Product: [Eclipse Project] JDT Reporter: Martin Aeschlimann <martinae>
Component: UIAssignee: Adam Kiezun <akiezun>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: ---   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description Martin Aeschlimann CLA 2001-10-15 04:57:42 EDT
203
1. in package 'a' create a file with wrong package statement:

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
package a.b.c.d.e;
public interface IDialogFieldListener {
	void dialogFieldChanged(DialogField field);
}

2. Move the cu to package p (update references)
3. Result has an import statement in the middle of the comment


/
import a.*;*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
...
Comment 1 Adam Kiezun CLA 2001-10-18 10:06:42 EDT
fixed for 205