Bug 113698 - Comment Code Formatter Should Allow Whitspace Changes
Summary: Comment Code Formatter Should Allow Whitspace Changes
Status: NEW
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.1.1   Edit
Hardware: Macintosh All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-Core-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-25 16:10 EDT by Levi Brown CLA
Modified: 2005-10-25 16:10 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Levi Brown CLA 2005-10-25 16:10:32 EDT
Currently the comment formatter assumes javadoc comment's whitespace is desired to be static. Such 
as:

/**
 * Foo
 * @return false
 * ...
 */

The formatter should allow for changes in the whitespace such that formatting such as:

/**
* Foo
* @return false
* ...
*/

is possible.