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 136152 - Add semicolon when finishing static import of field
Summary: Add semicolon when finishing static import of field
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-05-30 11:56 UTC by Jiri Prox
Modified: 2008-05-30 12:03 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 Jiri Prox 2008-05-30 11:56:45 UTC
The semicolon can be added at the end of line when using CC to finish static import of field. There is no way how to
continue in the line and user would have to add ';' manually anyway.

Example:
1) have code
import static java.awt.Color.|

2) use CC to add color name, e.g. BLUE

the code will look like 
import static java.awt.Color.BLUE

but is can be 
import static java.awt.Color.BLUE;