When i create property or method i generally use template which automatically insert comment :
/**
*
*/
public var name : type;
/**
- @private
*/
protected function _name( arguments ) : type
{
}
Unfortunatly when i use quickfix to create such properties or methods i have to manually type comment header.
Is there a way to add a customize quickfix template? or alternatively a way to cerate methods javadoc :
public function scrollToChild( child : DisplayObject , alignmentPoint : String = null ) : Boolean;
Right click on this function with an item "generate javadoc" and this will automattically generate :
/**
*
- @param child
- @param alignmentPoint
- @return
*/
public function scrollToChild( child : DisplayObject , alignmentPoint : String = null ) : Boolean;