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

Categories

0 votes
262 views
in Technique[技术] by (71.8m points)

eclipse - including fully qualified name in documentation

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...