Zahand
Zahand

Reputation: 488

IntelliJ JavaDoc proposals like Eclipse

Hello I didn't know what to search for, if I did I wouldn't be here. In Eclipse when I write JOptionPane.showOptionDialog the JavaDoc shows up and when I press showOptionDialog this comes ups on screen (In the yellow thingy)

JOptionPane.showOptionaDialog((Component parentComponent, Object message, String title,         int optionType, int messageType, Icon icon, Object[] options, Object initialValue)

But when I type it in IntelliJ only JOptionPane.showOptionDialog(); shows up, and I am new to programming and I can't remember what I have to write when.

Is there any way I can get it to show in IntelliJ too?

Upvotes: 0

Views: 195

Answers (1)

Joachim Sauer
Joachim Sauer

Reputation: 308249

In IDEA you can press Ctrl+P to get the Parameter information of the current call.

And: that stays relevant, even when you're more experienced, as memorizing every possible API is not a useful way to spend your time ;-)

Upvotes: 1

Related Questions