Bug 417892 - [xtend][quickfix] Java 'create method' quickfix does not create a new method
Summary: [xtend][quickfix] Java 'create method' quickfix does not create a new method
Status: NEW
Alias: None
Product: Xtend
Classification: Tools
Component: Backlog (show other bugs)
Version: 2.4.3   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: 2013-09-24 05:36 EDT by Anton Kosyakov CLA
Modified: 2013-09-24 05:36 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Anton Kosyakov CLA 2013-09-24 05:36:26 EDT
I have two files Foo.java and Bar.xtend with types Foo and Bar respectively.

Content of Foo.java:
package foo;

public class Foo {

   public void foo() {
       new Bar().bar();
   }

}

JDT proposes "create method 'bar()' in type 'Bar'" quickfix but it will only open Bar.xtend file without creation of new method.