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 159432 - Local Variables: Show attributes in FX style
Summary: Local Variables: Show attributes in FX style
Status: VERIFIED FIXED
Alias: None
Product: javafx
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Michal Skvor
URL:
Keywords:
Depends on:
Blocks: 173187
  Show dependency tree
 
Reported: 2009-03-02 12:26 UTC by Alexandr Scherbatiy
Modified: 2009-10-09 09:58 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments
IDE screenshot (119.48 KB, image/png)
2009-09-21 13:39 UTC, Alexandr Scherbatiy
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Alexandr Scherbatiy 2009-03-02 12:26:09 UTC
Release651 -> JavaFX_NB_651_Plugin: #15

  Product Version         = NetBeans IDE 6.5.1 (Build 200902261801)
  Operating System        = Windows XP version 5.1 running on x86
  Java; VM; Vendor        = 1.6.0_12-ea; Java HotSpot(TM) Client VM 11.2-b01; Sun Microsystems Inc.

Steps to reproduce:
- Copy the code to the editor
--------------------------------------------------------------------
class A{
    public var name: String;
    var a: A;
}


var a = A{
    name: "1"
    a: A{
        name: "2"
        a: A{
            name: "3"
        }

    }

}

println(a);
--------------------------------------------------------------------

- Set a breakpoint to the last line
- Debug the file
- Go to the Local Variables window
- Expand the 'a' variable
  It contains 'javafxapplication3$Main$A$a' attribute instead of 'a' with Main$A type instead of Main.A

 It is also contains 'javafxapplication3$Main$A$a$needs_default$' variable that seems is not necessary.
Comment 1 Adam Sotona 2009-04-10 12:12:14 UTC
This is a well known limit of current NB debugger.
Comment 2 Alexandr Scherbatiy 2009-09-21 13:39:29 UTC
Created attachment 88013 [details]
IDE screenshot
Comment 3 Michal Skvor 2009-10-07 14:57:23 UTC
It behaves much more better.
Comment 4 Alexandr Scherbatiy 2009-10-09 09:58:24 UTC
verified in netbeans-trunk-nightly-200910080418-javafx-full.zip.
However attributes with other types still is not shown in JavaFX style.
See issue 174193