When forward engineering Java code I am having the following problems:
1) I am losing single line comments (i.e. "//some comment") located in the
"import" section at the top of a Java class file, and the class variable
declaration section of a Java class file
2) Rose is reordering the import statements during the forward engineering
process
3) Rose is reordering the class variable declarations during the forward
engineering process
4) Rose is not maintaining newline characters where variables are being
initialized
Sample source code before forward engineering:
---------------------------------------------------------------------
package mypackage;
//comment 1
import java.lang.*;
//comment 2
import java.util.*;
public class MyClass {
//comment 3
String s = "some value 1" +
"some value 2" +
"some value 3";
}
Sample source code after forward engineering:
------------------------------------------------------------------
package mypackage;
import java.util.*;
import java.lang.*;
public class MyClass {
String s = "some value 1" + "some value 2" + "some value 3";
}
I am using Rational Rose Professional J Edition (Ver 7.0.9420.17, Java
Add-in Ver 3.0).
Any help would be greatly appreciated.
Thanks,
Erik
Erik Stockton
952.229.7327 (Lifetime Fitness)
[EMAIL PROTECTED]
************************************************************************
* Rose Forum is a public venue for ideas and discussions.
* For technical support, visit http://www.rational.com/support
*
* Admin.Subscription Requests: [EMAIL PROTECTED]
* Archive of messages:
http://www.rational.com/products/rose/usergroups/rose_forum.jtmpl
* Other Requests: [EMAIL PROTECTED]
*
* To unsubscribe from the list, please send email
*
* To: [EMAIL PROTECTED]
* Subject:<BLANK>
* Body: unsubscribe rose_forum
*
*************************************************************************