我有一些带有doxygen文档的Java接口
public interface Service< T , U > {
...
}
Doxygen正在为课程Service< T, U >
创建文档。当我尝试使用@ref标记@ref Service< T , U>
从其他页面引用此文档页面时,会生成警告:
warning: unable to resolve reference to 'Service' for \ref command
看起来@ref与“&lt;”不友好在名称中。
有没有人知道使用“&lt;”引用类的一些解决方法在名字中唱歌?
答案 0 :(得分:0)
我尝试使用以下示例重现您的问题:
/** A service */
public interface Service< T , U > {
}
/** @mainpage
* See @ref Service<T,U> "the service interface" for details.
*/
但它运作良好(正如我所料)。