java - Netbeans/JavaFX Application Subclass Missing -
when create new javafx application in netbeans 7.3 (and choose "create application class") no such class created. not package -- empty default package.
i assume create manually extending 'application' class maybe behaviour symptomatic of setup anomaly.
any idea why happens? btw, had same issue netbeans 7.1.
cheers!
i cannot replicate issue.
this works me. in netbeans 7.3:
create new javafx project:
file | new project | javafx | javafx application
(clicknext
)enter project name, example
testproject
(click `finish):the screen has checked checkbox
create application class
. default application class nametestproject.testproject
can edit default application class name change , package located in if like.a skeleton application class created:
the
testproject
class extendsapplication
, resides intestproject
package.
to create more applications in same project:
right click on project, choose:
new | other | javafx | javafx main class (click
next
).enter class name, example
newfxmain
from package drop down choose project package, example
testproject
(clickfinish
).another skeleton application class created:
the
newfxmain
class extendsapplication
, resides intestproject
package.
Comments
Post a Comment