java - Function header comments in netbeans -
how generate these kind of function header comments in netbeans? shortcut give template along parameter names?
/** * performs decrease key operation * @param index index of node in refarray key decreased * @param amount amount key reduced */ public void decreasekey(int index, int amount) { }
just above method, constructor or field, type /**
, follow enter immediately. netbeans should generate template javadoc.
Comments
Post a Comment