38

I have searched Google and JetBrains website, but I cannot find docs for the com.intellij packages.

Any IDEAs (:-))?

Ralph
  • 31,584
  • 38
  • 145
  • 282

4 Answers4

20

Thanks to a comment from @Sorin, the official documentation is available here: http://www.jetbrains.org/intellij/sdk/docs/index.html

Here are some docs:

Lots of links here: http://confluence.jetbrains.net/display/IDEADEV/PluginDevelopment

The SDK: http://confluence.jetbrains.net/display/IDEADEV/Getting+Started+with+Plugin+Development

Also, from the above link, you can check out the source code to the community edition, which should effectively act as API docs:

http://www.jetbrains.org/pages/viewpage.action?pageId=983225

Kirk Woll
  • 76,112
  • 22
  • 180
  • 195
8

It does not exist, either in javadoc or otherwise.

Peter O.
  • 32,158
  • 14
  • 82
  • 96
1

There don't appear to be any, but at one time perhaps there was. There is a list of classes here which links to 404'd pages on jetbrains.com. This list itself is still kind of useful though.

Also the IntelliJ source is in grepcode which is a very useful site!

Ctrl-clicking/auto-completing stuff to see the API in IDEA itself is also quite helpful. Unlike Eclipse, it doesn't give you a useless HTML page showing unreadable decompiled code.

Timmmm
  • 88,195
  • 71
  • 364
  • 509
0

There is github repo of community edition: https://github.com/JetBrains/intellij-community Hope this helps

Denis Gburg
  • 23
  • 1
  • 4