I want to wrap existing internal plugin (quick javadoc)

I want to customize contents in quick javadoc window

I want to use existing plugin if I can

 

1. How can I make it? should I import full intellij idea code?

2. It seems that there are some implementations about javadoc view. What is useful to me?

 

Sorry for my english..

Thanks

 

0
3 comments

You should be able to customize quick-doc contents by registering a DocumentationProvider instance for corresponding language. You can find examples of DocumentationProvider implementations and their registration in IDEA CE source code.

0
Avatar
Permanently deleted user

Thanks for reply.

But I want to maintain existing parsing & display logic

Can I export existing plugin classes to jar and import into my project?

0

What do you want to change in javadoc output?

If you can work with existing HTML text, just take the output of JavaDocumentationProvider, and modify it in your DocumentationProvider as you wish.

Otherwise, you can reimplement JavaDocumentationProvider taking its existing implementation as a starting point (but in this case, obviously, your implementation can get out of sync at some point with mainline JavaDocumentationProvider).

0

Please sign in to leave a comment.