Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 315101 - "Add description..." actions should be listed in information box
Summary: "Add description..." actions should be listed in information box
Status: CLOSED WONTFIX
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: PDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: PHP Core CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-05-31 11:39 EDT by Roy Ganor CLA
Modified: 2020-05-14 11:17 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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() { }