我有一些带有 doxygen 文档的 Java 接口
public interface Service< T , U > {
...
}
Doxygen 正在为 class 创建文档Service< T, U >
。当我尝试使用 @ref 标记从其他页面引用此文档页面时@ref Service< T , U>
,会生成警告:
warning: unable to resolve reference to 'Service' for \ref command
看起来@ref 对名称中的“<”不友好。
有谁知道一些解决方法来引用名称中带有“<”的类?