Edit Quick Documentation text

已回答

Is there any way to edit the quick documentation text, displayed when hovering a java class? I've tried creating a class that extends AbstractDocumentationProvider. However, my custom documentation (getQuickNavigateInfo) is only provided when hovering on classes, whose symbol could not be resolved (e.g. not correctly imported). When the class is recognized, I believe my quick documentation text gets overridden by other DocumentationProvider. 

Is there something I am missing?

0

In this case, you can set your provider before the one that overrides your documentation (i.e. html) using:

<lang.documentationProvider order="before html" implementationClass="..." />
2

That did it, thank you! I hadn't noticed that attribute. 

0

请先登录再写评论。