Bug 120108 - [ast rewrite] need a way to create Javadoc fragments on separate lines
Summary: [ast rewrite] need a way to create Javadoc fragments on separate lines
Status: NEW
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows XP
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on: 93644
Blocks:
  Show dependency tree
 
Reported: 2005-12-09 10:13 EST by Gleb Sturov CLA
Modified: 2008-07-04 08:47 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 Gleb Sturov CLA 2005-12-09 10:13:52 EST
I create a Javadoc using AST rewrite. I end up with something like:
/**
 * @mytag fragment1 fragment2 fragment3
 */
My set of fragments is potentially large, so what I need instead is:
/**
 * @mytag
 *   fragment1
 *   fragment2 
 *   fragment3
 */
I currently don't see a way to get that.
Comment 1 Jerome Lanneluc CLA 2005-12-12 06:21:39 EST
Martin, please close if AST rewrite follows the formatter preferences in this case.
Comment 2 Martin Aeschlimann CLA 2005-12-12 06:31:12 EST
Not yet implemented due to bug 93644.