在Java文档注释

时间:2015-06-23 16:53:18

标签: java javadoc enunciate

在我的Enunciate API文档报告中,我需要将一些评论文本的字体更改为" Courier New"字体类型。

有可能吗?

2 个答案:

答案 0 :(得分:1)

为此功能找到了一种方法 - 在注释中使用Font html标记,Java doc代码将其作为html标记读取并以courier字体显示。

/* Sample URL - <font face="courier">https://{Hostname}/programs/FireIn</font>, Replace the host name with the respective environment name</br>
*/

答案 1 :(得分:0)

从1.2开始,Javadoc支持HTML样式表。您可以对stylesheet.css(位于Javadoc HTML文件的根目录)进行这些更改。

要为左侧框架选择较小的无衬线字体,请更改:

#FrameItemFont { font-size: normal; font-family: normal }

致:

#FrameItemFont { font-size: 10pt; font-family: helvetica arial sans-serif }

自己定制所需的任何字体。