Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Eclipse (3.4+ upwards), I was searching for shortcut which converts the if {} else {} condition block to the java ternary operator[or the ?: operator ]

can you guide me, how to do i do this ?

Thank you!

share|improve this question
4  
Wow. If this exists, I'd be happy as a candy in a kid factory. – polygenelubricants Aug 25 '10 at 13:35
@poly, hehe, kid factories... – jjnguy Aug 25 '10 at 13:38
3  
I want it the other way around - ternary expressions get too unreadable – Thorbjørn Ravn Andersen Aug 25 '10 at 14:17

2 Answers

There is no such shortcut. Refactoring statements into expressions isn't a trivial process, and isn't always possible to begin with. The process would be too complicated to be automated.

That said, Ctrl + Shift + L will list ALL Eclipse shortcuts.

Related questions

share|improve this answer
thanks for reply,but wouldn't it be possible if the assignment is done only once? by eclipse-template configuration or something else? – Narayan Aug 25 '10 at 13:39
@Narayan: check this out: ideone.com/66SrI ; the rules to do this automatic refactoring would have to be very complicated. – polygenelubricants Aug 25 '10 at 13:55
1  
ok, i take your point.; but every time i need to check something as simple like this ideone.com/p0GC1 , i feel the need for it, like Select the expression and press that magical key =] – Narayan Aug 26 '10 at 3:49
1  
+1 for taking effort to write the code in ideone :) – Narayan Aug 26 '10 at 3:50
@Narayan: as I said in the comment to the question, I'd be happy to see this implemented in Eclipse too. It can be done of course, I just don't think it's that easy. – polygenelubricants Aug 26 '10 at 3:58

Well, you could add a Template to Eclipse like this:

${condition:field(boolean)}? ${positive:field(void)}: ${negative:field(void)};

Name it something like tern and you can have it auto-create the ternary operator for you.

(Not sure if this is what you want)

share|improve this answer
1  
I think they are looking to highlight an existing if/else block and have it automagically converted to a ternary statement – Goibniu Aug 25 '10 at 14:19
@Rul, I know. But this is the closest that is easily possible. – jjnguy Aug 25 '10 at 14:22
Well I gave it +1 because I've added it to my copy of eclipse :) – Goibniu Aug 25 '10 at 14:31
@Rul, thanks! I added it to mine too. – jjnguy Aug 25 '10 at 14:46
@jinguy, +1 for the template but the template outputs something like condition? positive: negative;, isnt much helpful =[ – Narayan Aug 26 '10 at 3:52
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.