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 215834 - Debugger doesn't stop at a breakpoint
Summary: Debugger doesn't stop at a breakpoint
Status: NEW
Alias: None
Product: debugger
Classification: Unclassified
Component: Java (show other bugs)
Version: 7.1.2
Hardware: PC Windows 7 x64
: P3 normal (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-07-23 13:42 UTC by Ale.Xander
Modified: 2014-04-28 17:59 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Test case (16.75 KB, application/zip)
2012-07-23 13:42 UTC, Ale.Xander
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Ale.Xander 2012-07-23 13:42:36 UTC
Created attachment 122268 [details]
Test case

Product Version: NetBeans IDE 7.1.2 (Build 201204101705)
Java: 1.7.0_05; Java HotSpot(TM) 64-Bit Server VM 23.1-b03
System: Windows 7 version 6.1 running on amd64

I've created a test MIDlet application based on Java ME SDK 3.0.5 and LWUIT package. The project consists of only one file: Main.java (please find in attachments). It shows a simple form with one button on it. The button click event creates another form.

I have 2 breakpoints in the source code. The breakpoint located in the actionPerformed method is never reached with the following message: 'Not able to submit breakpoint LineBreakpoint Main.java : 41, reason: No executable location available at line 41 in class myPackage.Main$ShowComboButtonListener'. But debugger stops at the line 75 - the first line of the method called inside the actionPerformed method.

Is it actually possible to use breakpoints inside event processors?