Issue Details (XML | Word | Printable)

Key: FDT-583
Type: Improvement Improvement
Status: Confirmed Confirmed
Priority: Minor Minor
Assignee: FDT Team
Reporter: Gunnar Herzog
Votes: 1
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
FDT

Auto completion in @see asdoc comment does not generate fully qualified class names.

Created: 09/Jul/09 12:38 PM   Updated: 25/Jul/12 03:41 PM
Component/s: ASDocs
Affects Version/s: FDT 4.5.2
Fix Version/s: FDT
Security Level: public

Time Tracking:
Not Specified

Review Type: Review by Product Owner


 Description  « Hide
When using auto completion in an asdoc comment (@see) the fully qualified class name has to be printed instead of the simple class name. Simple class names are not linked correctly in the resulting html files.

 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Michael Plank added a comment - 15/Mar/10 11:42 AM
Steps to reproduce:

1. Create a new Class
2. Insert the following ASDoc comment above the "public class .." defition.
3. Use Autocompletion [AC] at the following poing in the code

package example {
	/**
	 * @see [AC]
	 */
	public class Test {

	}
}

4. select on of the Autocompletion proposals (for example AbstractEvent)

FDT just inserts AbstractEvent
-> The full qalified class name must be inserted: mx.rpc.events.AbstractEvent