English 中文(简体)
Javadoc Docklets 能够识别一个无效构建器( 编译器创建的默认构建器) 吗?
原标题:Can Javadoc doclets identify a nullary constructor (compiler-created default constructor)?

在创建软件应用程序时,我正在创建一个要插入Javdoc的“Doclet ” 。 使用 Javadoc 和 rootDoc 产生的“ rootDoc ” 问题之一是它包括了编译者创建的无效构件。 是否有办法防止这种情况发生或通过为我的“ RootDoc” 提供的“ RootDoc” 来识别它们? 我昨晚发现“ 合成法” 时,我想我在这方面有所进展,但“ 无效构件” 显然不是合成的。

最佳回答

进一步的调查显示,为附件所列类Doc 返回的源地址与为生成的默认构建器返回的源代码地址(一个没有记录的特性! ) 具有相同的行号和列号。 我成功使用此选项作为歧视符 。

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签