mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Adds a new intention with the name "replace with javadoc" that converts end-of-line comments and c-style block comments with javadoc comments. The idea is to grab all the comments (left and right siblings) that belong to a PsiMember, squash them together and make a javadoc out of their combined content. GitOrigin-RevId: b93bbab4a31d318c8b6e0557a7c6f88622f4abac
8 lines
115 B
Java
8 lines
115 B
Java
// "Replace with javadoc" "false"
|
|
|
|
class Main {
|
|
/**
|
|
* javadoc<caret>
|
|
*/
|
|
private static final int i = 0;
|
|
} |