Skip to content
#

javadoc

Here are 177 public repositories matching this topic...

SrLeojaco
SrLeojaco commented Oct 5, 2019

Actually is possible to manage the public chat formatting setting

  • [factionrole factioname] playername

But that is not available for truce/ally/faction chat where is not possible to format the [factionrole factioname] with different color because factionrole/factioname/playername is handled by %s

"factionChatFormat": "§a§lFactionChat §a%s§8: §a%s",
"allianceChatFormat": "§d§lAllyCh

kpritam
kpritam commented Mar 15, 2018

I have a package structure which has scala files but provides Java API as well.
But everything is written in scala. I am using genJavaDoc to generate java documentation. It does get generated for scala classes but package documentation does not get generated for javadoc.

I jave followinf package structure:
com.example.javadsl

  • javadsl.scala
  • ILocationService.scala

javadsl.scala look

joffrey-bion
joffrey-bion commented May 16, 2018

For now, the class name provided in Link elements is taken directly from the Javadoc's text. This is barely usable to actually find the corresponding class/method.
It would be nice to find a way to actually read the corresponding fully qualified class name from the imports, so that we can provide the actual Class<?>/Method object at runtime.

manoelcampos
manoelcampos commented Jul 19, 2017

Sometimes, developers write useless javadocs such as the example below

/**
 * Some Foo Method.
 * @param id the id
 * @return 
*/
int someFooMethod(int id){ return 0; }

The plugin should spot this kind of "documentation" and present them into the report.
A common pattern to detect such useless javadocs are:

  • the method documentation includes only the name of the method,

Improve this page

Add a description, image, and links to the javadoc topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the javadoc topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.