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 73492 - Code completion for @EJB can offer list of entity classes and session beans
Summary: Code completion for @EJB can offer list of entity classes and session beans
Status: NEW
Alias: None
Product: javaee
Classification: Unclassified
Component: EJB (show other bugs)
Version: 5.x
Hardware: All All
: P2 blocker (vote)
Assignee: martin_adamek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-03-10 15:55 UTC by Jan Horvath
Modified: 2008-05-19 21:40 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 Jan Horvath 2006-03-10 15:55:58 UTC
Code completion for @EJB can offer list of entity classes and session beans. After one class is selected, 
completion can generate appropriate declaration and setter. 

example:
NewSessionLocal bean;
@EJB(name="NewSessionLocal" )
public void setBean(NewSessionLocal bean)
{
  this.bean = bean;
}