Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用UMLGraph生成带有 Javadoc 的 UML Graph 。
我在这里搜索一个选项,以排除我的包私有类被可视化。
// package-private // javadoc excludes it. that's ok. // umlgraph keeps it. that's not ok. class SomeBase { }
该类已从 Javadoc 中排除。但是 UMLGraph 保留了它。
我怎样才能用什么选项排除课程?
我没有看到 UMLGraph 有这样的选项。考虑将@hidden标记添加到类的 Javadoc 注释中,如此处所述。
@hidden