I am new to IntelliJ. Is there a plugin for IntelliJ where I can select a few fields and print them or create jsp form elements, etc. I know they have toString, equals, etc.

link|improve this question

76% accept rate
feedback

1 Answer

up vote 1 down vote accepted

No, there's no plugin for doing that, and write a "proper plugin" will be hard.

But you can achieve something similar using "Live Templates" (at least for printing fields, Creating a JSP form is a different story)

IntelliJ come with ready-to-use "Live Templates" like "soutv"...

So you type soutv on your java editor then type tab key IntelliJ will generate a "System.out.println("myField = " + myField)" and you can choose what file to print

Check de IntelliJ docs to know how to write your own Live Templates and see some examples

link|improve this answer
Thanks, I have an eclipse plugin that does that as shown here : stackoverflow.com/questions/2616493/…. I will port it to IJ. – fastcodejava Jan 4 '11 at 2:31
feedback

Your Answer

 
or
required, but never shown

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