| Summary: | [xtext/xtend] refactoring turns simple name into FQN | ||
|---|---|---|---|
| Product: | [Modeling] TMF | Reporter: | Moritz Eysholdt <moritz.eysholdt> |
| Component: | Xtext | Assignee: | Project Inbox <tmf.xtext-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | sven.efftinge |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | Macintosh | ||
| OS: | Mac OS X | ||
| Whiteboard: | |||
the same happens when an Xtend class is referenced instead of a Java class *** This bug has been marked as a duplicate of bug 370135 *** |
Steps to reproduce: 1. create these files ----- Xtend ---- import x.Bar class Foo extends Bar { } --------------- ----- Java ------ package x; public class Bar { } --------------- 2. Place your cursor on "Bar" in "class Foo extends Bar". 3. Refactor "Bar" to "Barr". result: "class Foo extends x.Barr". I'd expect "class Foo extends Barr"