Printing Method Args Using Live Template

I would like to be able to create a live template in Jetbrain's Idea that will log the method's arguments. Let's call it "larg". It would work like:

public void get(String one, String two) {
    larg<tab>


to create

public void get(String one, String two) {
    log.info("get: one = " + one + " two = " + two);


I'm fine with getting the method name in, but have not figured out how to pull in the method arguments. Any ideas?



--Tim
0
1 comment

Hello Tim,

There is no predefined live template function to do this for you automatically.
You can write a plugin that would provide such a function.

I would like to be able to create a live template in Jetbrain's Idea
that will log the method's arguments. Let's call it "larg". It would
work like:

public void get(String one, String two) {
larg<tab>
to create

public void get(String one, String two) {
log.info("get: one = " + one + " two = " + two);
I'm fine with getting the method name in, but have not figured out how
to pull in the method arguments. Any ideas?

--Tim

---
Original message URL:
http://www.jetbrains.net/devnet/message/5245394#5245394

--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"


0

Please sign in to leave a comment.