for Example...
`    Object o1 = new Object();
    Object o2 = new Object();
    Object o3 = new Object();`I want to select these sentence and ALT + SHITFT + Z : sysout the localVal to Test
like this:
`    System.out.println(o1);
    System.out.println(o2);
    System.out.println(o3);`
how can i write such a template? Thx!javatemplate模板