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 122154 - [Code Completion] Show proper subclasses above the line (smart types)
Summary: [Code Completion] Show proper subclasses above the line (smart types)
Status: RESOLVED WONTFIX
Alias: None
Product: javafx
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Adam Sotona
URL:
Keywords:
: 140042 (view as bug list)
Depends on:
Blocks: 154422
  Show dependency tree
 
Reported: 2007-11-16 14:46 UTC by Alexandr Scherbatiy
Modified: 2011-05-16 13:48 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexandr Scherbatiy 2007-11-16 14:46:27 UTC
Steps to reproduce:

- Create a JavaFX file:
---------------------------------------------------------
import javafx.ui.*;

Frame{
    
    content: 
    visible: true
}
---------------------------------------------------------
- Go to 'content:' property of 'Frame' class
- Press <Ctr+Space> to invoke code completion
  There is no 'Label' class  in the suggested code completion list.
Comment 1 Lark Fitzgerald 2008-10-13 20:31:00 UTC
Frame has been refactored into Stage. Stage nests Scene which contains content.  An updated version of this would be:

import javafx.stage.Stage;
import javafx.scene.Scene;

Stage {
    title : "MyApp"
    width: 200
    height: 200
    scene: Scene {
        content: [  ]
    }
}

where you ctrl+space right after content: or inside of the [ ].  All the nodes classes should be listed.  This is the 
initial point of entry for everything and it should suggest something helpful.
Comment 2 David Strupl 2008-10-30 14:47:48 UTC
*** Issue 140042 has been marked as a duplicate of this issue. ***
Comment 3 Petr Nejedly 2010-09-24 11:42:22 UTC
Reassigning javafx bugs to Adam.
Comment 4 David Strupl 2011-05-16 13:48:09 UTC
Closing all bugs filed against JavaFX 1.x as wontfix. We will support JavaFX 2.0 - please keep opened only bugs against the new release. Thanks.