我正在做一些练习Model-View-Controller
设计模式的作业。在这种设计模式中,在许多情况下,通过许多类调用相同的方法
(Controller#foo() -> another_class1#foo() -> another_class2#foo() -> another_class_3#foo()).
我的问题是关于javadoc
我想在Controller类中只对foo()
发表一次评论,而在其他类中,我会对Controller of foo()
中的评论进行“获取”。
我已经尝试了@see
和@link
,但这些只提供Controller#foo()
的链接,我想复制Controller#foo()
中的评论。
谢谢!