Balaji

Results 12 comments of Balaji

There are several ways to invoke quick assist as part of the test framework: 1. is through `org.eclipse.swtbot.eclipse.finder.widgets.SWTBotEclipseEditor` class. It has methods with `quickFix` as the name. Right now, they...

### The Move Compilation Unit refactoring fails when the destination does not exist. Move Refactoring is buggy. The issue is that Eclipse throws an exception when you perform the following...

### Eclipse doesn't move multiple fields at once. 926650a78f19f50d59e1fbd16d930176483ede35 brings out a bug in eclipse. When you select multiple fields, only the first field in the textual order is moved....

### The Move Type to New File refactoring generates redundant files. I noticed this bug in eclipse while working on issue #200, Consider this code in a file called `C.java`...

@vazexqi: You can invoke the refactoring menu from the graphical structured views by using `ALT+SHIFT+T` keyboard shortcut. Here' my investigation notes for the evening: There are 2 refactoring suggestions present...

Consider a file in a JAVA project called `C.java` with the following contents. ``` public class D { } ``` Now, you can invoke the quick fix from insider the...

When I invoke the completion popup via `CTRL + 1` and pick an action to perform, line 933 gets executed. This holds good for my previous comment. Now, let's say...

I didn't close this issue. I don't know how that happened.

Notes for the evening: When eclipse first starts up, org.eclipse.jdt.ui.actions.RefactorActionGroup.RefactorActionGroup(IWorkbenchSite, ISelectionProvider) is created. From then on, it's cached. It is here that the refactoring actions are created. One of the...