英文:
Is there a way to leave notes in library code in eclipse?
问题
因为某些原因,我正在使用未记录的 Java 库代码,无法以任何方式进行修改或编写。我正在使用 Eclipse 2020-06,并且我想为自己留下一些注释,以便简化事情。是否有办法实现这一点?或者有没有 Eclipse 扩展可以做到这一点?
英文:
due to reasons I am working with undocumented java library code that I cannot alter in any way or write into. Im using eclipse 2020-06 and I would like to leaves some notes for myself to make things easier. Is there a way to do that? or maybe an eclipse extension?
答案1
得分: 3
你可以使用书签(bookmarks)。它们的工作原理与断点(breakpoints)类似,但在调试时不会暂停执行。
你可以通过上下文菜单添加它们。
如果我记得没错的话,你可以添加的信息量有点受限。基本上只有一个单独的文本框。
请查看关于书签的帮助部分。
也许有一些插件可以扩展这个功能(例如,这个插件 可以添加键盘快捷键)。
英文:
You can use bookmarks. They work somewhat similarly to breakpoints, without pausing execution when you're debugging.
You can add them via the context menu.
If I recall, you're a bit limited by the amount of information you can add. It's basically just a single text box.
See the help section on bookmarks
Maybe there's some plugins which extend the functionality (e.g. this one for adding keyboard shortcuts)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论