History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEABKL-3316
Type: Bug Bug
Status: Open Open
Priority: Normal Normal
Assignee: Eugene Vigdorchik
Reporter: Alain Ravet
Votes: 0
Watchers: 0
Available Workflow Actions

Mark as Stalled
Operations

If you were logged in you would be able to see more operations.
IDEA: Backlog

Annotation keeps IDEA from prefilling the javadoc

Created: 13 Jul 05 14:46   Updated: 13 Jul 05 15:51
Component/s: Editor. Code Completion
Affects Version/s: None
Fix Version/s: None

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 3,403


 Description  « Hide
Problem:
If you press ENTER on the code above, IDEA won't prefill the javadoc, because of the annotation presence.

before:
-------

@Nullable <<---------- BECAUSE OF THIS
/**<CURSOR HERE>
public static int foo (String i_param) { return 1; }

After:
-------

@Nullable
/**
* <<--------- SHOULD NOT BE EMPTY !!!
*/
public static int foo (String i_param) { return 1; } }



 All   Comments   Work Log   Change History      Sort Order:
Maxim Shafirov - 13 Jul 05 15:51
It's actually very similar to:
public
/** <caret>1
int foo(int i) {}

I mean position of the @Nullable is wrong. Should be in modifier list.