Generate Java import statements during ORM Generate Code

Having followed most instructions I can find (eg. doing an instant reverse of java src.zip and reversing classes to Class Repository then using this reversed class as attribute Type) I cannot get import statements created during the ORM Generate Code process - I end up with references such as:

private java.lang.Long id;

instead of just

private Long id;

and even references such as:

public class NamedBusinessObject extends com.company.model.generic.BusinessObject implements Serializable {

when the BusinessObject and NamedBusinessObject are in the same package so should just be

public class NamedBusinessObject extends BusinessObject implements Serializable {

Should what I want to do be supported? Any ideas why I’m getting these results?

Phil

PS. Under “Code Sync” preference and “Generate Import” area I have checkmark in “Add import statement…” box
Yacht Race Management System.vpp