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 221943

Summary: [81cat] Add code completion for named query params.
Product: javaee Reporter: kosmonaffft
Component: PersistenceAssignee: Sergey Petrov <sj-nb>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.1   
Hardware: PC   
OS: Windows 7   
Issue Type: ENHANCEMENT Exception Reporter:

Description kosmonaffft 2012-11-12 10:34:19 UTC
Hello all...

The main idea of this enhancement is add code completion for named query params.
As example i have query "findUserByName" with param "username". I want to have completion for "username in setParameter methid:

entityManager.createNamedQuery("...").setParameter("username", ...)...

or

Query query = ...
query.setParameter("username", ...);
Comment 1 kosmonaffft 2015-07-21 04:35:02 UTC
Still actual.