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 - [81cat] Add code completion for named query params.
Summary: [81cat] Add code completion for named query params.
Status: NEW
Alias: None
Product: javaee
Classification: Unclassified
Component: Persistence (show other bugs)
Version: 8.1
Hardware: PC Windows 7
: P3 normal with 1 vote (vote)
Assignee: Sergey Petrov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-11-12 10:34 UTC by kosmonaffft
Modified: 2015-07-21 04:35 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 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.