Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When I click short-cut key Alt+Shift+J, eclipse adds some java documentation with

@author xyz
@since date

on top of class.

  • So, where can we define this documentation template in eclipse when we click that short-cut key?
  • And how can I add additional details to include fully qualified name in class documentation in eclipse?
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
269 views
Welcome To Ask or Share your Answers For Others

1 Answer

Go to Window -> prefereneces -> Java -> Code Style -> Code Templates. Select comments -> types. Edit and add the following line there: ${package_name}.${type_name}. In the code templates there is content assist by the way.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...