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

Summary: Add semicolon when finishing static import of field
Product: java Reporter: Jiri Prox <jiriprox>
Component: EditorAssignee: Dusan Balek <dbalek>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

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;