Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #43: Javadoc should be detected above block comment #16586

Merged
merged 1 commit into from
Mar 22, 2025

Conversation

@mahfouz72
Copy link
Member Author

Github, generate report

@mahfouz72
Copy link
Member Author

Github, generate report

@nrmancuso nrmancuso self-assigned this Mar 18, 2025
@nrmancuso
Copy link
Member

@mahfouz72 if we have two “Javadocs” above a method, how does this work out?

@mahfouz72
Copy link
Member Author

@nrmancuso The closer to the method is the Javadoc to check.

/**
* A Javadoc comment.
*/
/**
* A Javadoc comment.
* @return 0
*/
public int foo3() {
return 0;
}
/**
* A Javadoc comment.
* @return 0
*/
/**
* A Javadoc comment.
*/
public int foo4() { // violation, '@return tag should be present and have description.'

Copy link
Member

@nrmancuso nrmancuso left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good stuff :)

@nrmancuso nrmancuso removed their assignment Mar 20, 2025
@nrmancuso
Copy link
Member

@rnveach please take a look

@rnveach
Copy link
Contributor

rnveach commented Mar 20, 2025

You certainly found an old issue to look at.

@nrmancuso
Copy link
Member

You certainly found an old issue to look at.

I was thinking the same 😂 i don’t think I’ve dealt with anything less than four digits before.

Copy link
Contributor

@rnveach rnveach left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#43 (comment)

FileContents.getJavadocBefore and this is used by 8 checks, so each one is affected by this bug

Can you provide us a list so it can be put in the first issue of the post.

while (lineNo > 0 && (lineIsBlank(lineNo) || lineIsComment(lineNo))) {
// skip blank lines and comments
while (lineNo > 0 && (lineIsBlank(lineNo) || lineIsComment(lineNo)
|| lineInsideBlockComment(lineNo + 1))) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not near a computer, but I am curious why this one is the only one which is +1. Would this method call work if lineNo was 0? Is this something we need to be concerned about?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inside this method, I used the clangComments collection and the lineNos in this collection is shifted by 1 from the file text. That's why I added 1.

1
2

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I used the clangComments collection and the lineNos in this collection is shifted by 1 from the file text. That's why I added 1.

Is this a bug in our code? I believe some places still have issues with 0 versus 1 in our code.

@mahfouz72
Copy link
Member Author

You certainly found an old issue to look at.

yeah, I selected the Javadoc issues and sorted them by total comments this was the second one. By doing a quick search now, this is the oldest issue in the repo :)

@mahfouz72
Copy link
Member Author

Can you provide us a list so it can be put in the first issue of the post.

UnusedImports
JavadocMethod
JavadocStyle
JavadocType
JavadocVariable
MissingJavadocMethod
MissingJavadocType
WriteTag

@nrmancuso nrmancuso assigned romani and unassigned rnveach Mar 21, 2025
Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

item:

* @return {@code true} if the line is inside a block comment (excluding Javadoc comments)
* , {@code false} otherwise
*/
public boolean lineInsideBlockComment(int lineNo) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please make it private.

We should not grow our API contract to users.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

Comment on lines 11 to 15
/**
* A Javadoc comment.
*/
//@ A JML Annotation
public int foo() { // violation, '@return tag should be present and have description.'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

from user perspective it is not clear what is considered as javadoc comment. may be //@ A JML Annotation ?

    /**
     * A Javadoc comment.
     * @return result
     */
    //@ A JML Annotation
    public int foo() throws Exception { // violation, '@throw tag should be present and have description.'

let update to this to give more hints that return is found, so javadoc is second comment from method signature.
same for all others.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

@romani
Copy link
Member

romani commented Mar 21, 2025

UnusedImports
JavadocMethod
JavadocStyle
JavadocType
JavadocVariable
MissingJavadocMethod
MissingJavadocType

lets add one javadoc above comment to Input of each of this check. as they are affected.

please use https://github.com/checkstyle/checkstyle/blob/master/.github/workflows/README.md#diff-report-by-configuration-at-test-configs-repository to trigger diff report for Example1 for each check.

@mahfouz72
Copy link
Member Author

The report is already there for all Javadoc checks

#16586 (comment)

@mahfouz72 mahfouz72 force-pushed the issue-43 branch 2 times, most recently from 4d241af to 14135e2 Compare March 21, 2025 15:12
Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Last

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot !!!

@romani romani merged commit a99db09 into checkstyle:master Mar 22, 2025
96 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

JavadocMethod: Javadoc Not Detected Above Multiline Comments
4 participants