Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 315101

Summary: "Add description..." actions should be listed in information box
Product: z_Archived Reporter: Roy Ganor <ganoro>
Component: PDTAssignee: PHP Core <php.core-inbox>
Status: CLOSED WONTFIX QA Contact:
Severity: enhancement    
Priority: P3 CC: zulus
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Roy Ganor CLA 2010-05-31 11:39:42 EDT
in content assist or simple hovering actions where the nice information boxes are provided, an "Add description" action should be suggested to quickly add a phpdoc to the declaration of the method.

For example:

function foo() { }
fo| <-- Ctrl+Space

when proposals are suggested the foo description should include an "Add description" hyperlink. when the user clicks on it the following comment is added to the function foo() declaration:

/**
 * Add description here...
 */
function foo() { }