This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 195758 - Javadoc tags containing non-letter characters are only partially highlighted
Summary: Javadoc tags containing non-letter characters are only partially highlighted
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P4 normal (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-02-21 12:48 UTC by hstenger
Modified: 2011-11-16 16:41 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description hstenger 2011-02-21 12:48:08 UTC
When using a custom Javadoc tag containing non-letter characters like dots, the highlighting is applied only to the part of the tag name before the first non-letter character.

The documentation of the javadoc tool suggests to include dots in custom tag names to avoid conflicts with future standard tags. See "Avoiding Conflicts" in http://download.oracle.com/javase/6/docs/technotes/tools/windows/javadoc.html#tag .

Example:
/**
 * @com.example.mytag This is a test.
 */

Only "@com" is highlighted as Javadoc tag.