I would like to be able to create a live template in the Jetbrain Idea that will record the arguments of the method. Let me call it "big." It will work as follows:
public void get(String one, String two) { larg<tab>
create
public void get(String one, String two) { log.info("get: one = " + one + " two = " + two);
I am fine with the method name, but did not understand how to use the method arguments. Any ideas?
java intellij-idea ide
Tim
source share