Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Documentation extracting Doclet does not recognize overloaded methods. #434

@odrotbohm

Description

@odrotbohm

In a class:

class Foo {

  /**
   * First doc.
   */
  void someMethod(Integer integer) { … }

  /**
   * Second doc.
   */
  void someMethod(String string) { … }
}

Only the Javadoc for one of the two methods will be extracted as the generated JSON keys the method entries by name. It would be cool if it additionally considered the method parameters:

{ …,
  "on" : [ {
    "parameters" : "java.lang.Integer" // comma separated String for easy lookup
    "comment" : "…",
    …
  }, … ]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions