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 135064

Summary: Add Codecompletion to Method name textfield of add breakpoint dialog
Product: debugger Reporter: Petr Cyhelsky <cyhelsky>
Component: JavaAssignee: Martin Entlicher <mentlicher>
Status: RESOLVED FIXED    
Severity: blocker CC: anebuzelsky
Priority: P3 Keywords: PLAN
Version: 6.x   
Hardware: All   
OS: Linux   
Issue Type: ENHANCEMENT Exception Reporter:

Description Petr Cyhelsky 2008-05-14 16:32:39 UTC
There should be some help for user to help him choose from different methods availaible in the file - for example code
completion or list or drop down ...
Comment 1 Martin Entlicher 2012-03-21 15:24:04 UTC
Code completion added to New Breakpoint dialog for following breakpoint types:
Class - completes class names in Class Name field
Exception - completes names of classes extending Throwable in Exception
            Class Name field
Field - completes class names in Class Name field
        completes all fields of the class in Field Name field
Method - completes class names in Class Name field
         completes all methods of the class in Method Name field

Implemented by changeset:   216007:ffd425409954
http://hg.netbeans.org/main/rev/ffd425409954
Comment 2 Quality Engineering 2012-03-22 11:12:26 UTC
Integrated into 'main-golden', will be available in build *201203220400* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main-golden/rev/ffd425409954
User: mentlicher@netbeans.org
Log: #135064: Code completion for classes, exceptions, methods and fields is added.