Bug 56408 - [code templates] Specify additional strings to include when ${tags} is expanded
Summary: [code templates] Specify additional strings to include when ${tags} is expanded
Status: ASSIGNED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 2.1.2   Edit
Hardware: PC Windows 2000
: P4 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-03-26 14:30 EST by Sean McRae CLA
Modified: 2006-06-12 17:10 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 Sean McRae CLA 2004-03-26 14:30:09 EST
It would be nice to be able to specify addional text to include with JavaDoc 
generation when the "${tags}" tag is exapnded. For example to indlue "TODO".

Right now "${tags} TODO - DOCUMENT ME!" expands to:

/**
 ... whatever in template ...
 * @param foo
 * @param bar
 * @return TODO - DOCUMENT ME!
 * /

Would prefer to expand in this manner (or be able to specify this behavior in 
some manner):

/**
 ... whatever in template ...
 * @param foo TODO - DOCUMENT ME!
 * @param bar TODO - DOCUMENT ME!
 * @return TODO - DOCUMENT ME!
 * /