Does the latest eclipse plugin for Xtend support moving classes from one package to another (and automatically update reference to the class)?
Using eclipse Mars, I try to the following:
- Right click file
Test.xtend
which containsclass Test {}
- Select Refactor / Move ...
- Move
Test.xtend
into a new package.
Result:
- The package name in the class
Test.xtend
is not changed to the new package. - References to the class in other Xtend and Java classes are not updated.