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
105 B
Java
8 lines
105 B
Java
// "Replace with javadoc" "true"
|
|
|
|
class Main {
|
|
/*
|
|
*<caret>
|
|
*/
|
|
private static final int j = 0;
|
|
} |