Bug 460115 - [contentassist] CA inserts FQN for inner class from super
Summary: [contentassist] CA inserts FQN for inner class from super
Status: NEW
Alias: None
Product: Xtend
Classification: Tools
Component: Core (show other bugs)
Version: 2.8.0   Edit
Hardware: PC Mac OS X
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-02-17 09:33 EST by Jan Koehnlein CLA
Modified: 2015-02-17 09:33 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jan Koehnlein CLA 2015-02-17 09:33:14 EST
Using content assist in the following Xtend file

  package foo

  class Foo { 
    static class Inner{}
  }

  class Bar extends Foo {  
    Inner d
  //   ^---toggle content assist here
  }

will insert 'foo.Foo.Inner', even when triggered after 'Inner'. Full qualification should not be necessary.