Writing javadocs is sometimes boring... If we had this feature we migh write
a lot more docs. :)
 
Consider an method foo with the cursor at |
 
    /**|
    public int foo(String bar, int beer) throws SomeException{
        ...
    }
     
    pressing tab? or enter? should expand to

    /**
     *
     * @param bar 
     * @param beer
     * @throws SomeException
     * @return |
     * 
     */ 
    public int foo(String bar, int beer) throws SomeException{
        ...
    }
 
   The throws might even be the same anayze as the automatic surround with
(try-catch) 

 

 



_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to