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 75418 - [cc][ws] Class completion in "|" does not work
Summary: [cc][ws] Class completion in "|" does not work
Status: NEW
Alias: None
Product: webservices
Classification: Unclassified
Component: Editor (show other bugs)
Version: 5.x
Hardware: PC Windows XP
: P3 blocker (vote)
Assignee: Milan Kuchtiak
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-04-24 14:44 UTC by Jiri Kovalsky
Modified: 2009-09-10 12:02 UTC (History)
1 user (show)

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 Kovalsky 2006-04-24 14:44:52 UTC
Development build #200604240200 of NetBeans 5.5
Windows XP, JDK 1.5.0_05 build #05

Description:
============
Code completion helping user to choose classes in the following two cases do not
work between quotation marks:

   @SOAPMessageHandler(className="|"
   @WebService(endpointInterface="|"

Steps to reproduce:
===================
1. Register GlassFish application server in Runtime tab.
2. Create new EJB module project from template.
3. Create new web service from template and type this code above at line 21:

   @WebService(endpointInterface="|"

4. Have cursor at position denoted by | char and press CTRL+Space.
5. "No suggestions" message shows up intead of Java code completion.
Comment 1 Marek Fukala 2006-07-27 15:36:38 UTC
DBCompletionContextResolver's completion context parser has to be improved to
handle this case.
Comment 2 Marek Fukala 2006-08-25 13:50:00 UTC
Please ignore the last comment - it should come to another issue. The problem 
here is that I need to hack the java class completion to work even inside string
literal.
Comment 3 Milan Kuchtiak 2007-09-25 10:20:08 UTC
Requires implementation of code completion inside literal value for selected set of attributes.
Comment 4 Lukas Jungmann 2008-04-14 17:15:41 UTC
moving opened issues where TM != dev to TM=TBD
Comment 5 Milan Kuchtiak 2008-11-19 10:41:21 UTC
The code completion, especially for @WebService(endpointInterface=...) is quite useful.
Still not implemented.
Comment 6 Milan Kuchtiak 2009-09-10 12:02:42 UTC
This is in fact an enhancement.
The given String attributes should be handled similarly as class attributes.