Skip to main content



      Home
Home » Language IDEs » Java Development Tools (JDT) » Feature Request: Exchange if <-> else if
Feature Request: Exchange if <-> else if [message #164154] Sat, 12 June 2004 09:35 Go to next message
Eclipse UserFriend
Hello!

I think it would be a nice feature for the Java Editor if it has the
following capability:

Code:

if (a == b) {
// blah1
} else if (a == c) {
// blah2
} else {
// blah3
}

Then click on "else if" or "if" and in the "Source" menu is the option
to exchange the routines and conditions.
It would result in:

if (a == c) {
// blah2
} else if (a == b) {
// blah1
} else {
// blah3
}

herojoker
Re: Feature Request: Exchange if <-> else if [message #164304 is a reply to message #164154] Mon, 14 June 2004 09:00 Go to previous message
Eclipse UserFriend
Originally posted by: akiezun.cutthis.mit.this.edu.andthis

Hero Wunders wrote:

> Hello!
>
> I think it would be a nice feature for the Java Editor if it has the
> following capability:

please enter feature requests to bugzilla. they will be unnoticed, lost
and forgotten here.
compoment for the one is JDT UI
a.
Previous Topic:possible to use java search view
Next Topic:Bug or not? com.sun.jdi.InvocationException in Variables view
Goto Forum:
  


Current Time: Tue Jun 03 18:35:41 EDT 2025

Powered by FUDForum. Page generated in 0.02889 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top