when we use eclipse
inside the class we type
"main"
then hit CTRL+ENTER
and suddenly whole definition of the main is written in the class file in eclipse editor
suppose i have a method
void myAwesomeMethod(String string)
{
System.out.println("===>>>Sstring is "+string);
}
i want to create some short cut like say CTRL+SHIFT+P
which will type this whole method in my editor
how can one do it ??
or is there any library or plugin to do it in a better way ??