[jira] [Updated] (NETBEANS-4722) JAVA_HOME not set on Gradle projects.

2020-08-27 Thread Laszlo Kishalmi (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4722?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Laszlo Kishalmi updated NETBEANS-4722:
--
Summary: JAVA_HOME not set on Gradle projects.  (was: JAVA_HOME not set on 
Gradle projects (MacOS only))

> JAVA_HOME not set on Gradle projects.
> -
>
> Key: NETBEANS-4722
> URL: https://issues.apache.org/jira/browse/NETBEANS-4722
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Gradle
>Affects Versions: 12.0
> Environment: MacOS X 10.15.6, Apache NetBeans IDE 12.0, Gradle plugin 
> 1.4
>Reporter: José Pereda
>Assignee: Laszlo Kishalmi
>Priority: Major
>  Labels: EasyFix
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> On a new empty "Java with Gradle" project, when running with `run`:
> {code:java}
> public static void main(String[] args) {
> System.out.println("ENV1: " + System.getenv("JAVA_HOME"));
> System.out.println("ENV2: " + System.getenv("_"));
> }
> {code}
> the result in the Output window is:
> {code:java}
> JAVA_HOME="/Users/$user/Downloads/jdk-11.0.2.jdk/Contents/Home"
> cd /Users/$user/NetBeansProjects/gradleproject; ./gradlew 
> --configure-on-demand -x check run
> Configuration on demand is an incubating feature.
> > Task :compileJava
> > Task :processResources NO-SOURCE
> > Task :classes
> > Task :run
> ENV1: null
> ENV2: /Users/$user/Downloads/jdk-11.0.2.jdk/Contents/Home/bin/java
> {code}
> So internally JAVA_HOME is set for NetBeans, but the project doesn't have 
> access to it.
> This might be a bug, as there is an environment variable named `_` that has 
> the value expected for `JAVA_HOME`.
> On a Maven project, `JAVA_HOME` is printed with the correct value, but `_` 
> doesn't exist (as expected). This result is the also the expected for both 
> Maven and Gradle projects on Windows.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4740) Javadoc popup should not display when javadoc window is open

2020-08-27 Thread Alonso del Arte (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4740?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186220#comment-17186220
 ] 

Alonso del Arte commented on NETBEANS-4740:
---

I've noticed this. It's annoying when it happens, but the redundant popup is 
easily dismissed. So I agree with the priority classification of "trivial."

> Javadoc popup should not display when javadoc window is open
> 
>
> Key: NETBEANS-4740
> URL: https://issues.apache.org/jira/browse/NETBEANS-4740
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Michele Costabile
>Priority: Trivial
>
> When a Javadoc window is open, for example to allow for browsing a code base, 
> the Javadoc popup is redundant.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4745) fxml editor shows errors for Insets (immutable objects in general?)

2020-08-27 Thread Ernie Rael (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4745?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ernie Rael updated NETBEANS-4745:
-
Labels: pull-request-available  (was: )

> fxml editor shows errors for Insets (immutable objects in general?)
> ---
>
> Key: NETBEANS-4745
> URL: https://issues.apache.org/jira/browse/NETBEANS-4745
> Project: NetBeans
>  Issue Type: Bug
>  Components: javafx - Editor
>Reporter: Ernie Rael
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> To recreate:
> NewProject > JavaWithMaven > FXML JavaFX Maven Archetype (Gluon)
> Open primary.fxml, in "other sources" "source/main/resources" 
> Observe that the lines like:
> {code}
> 
> {code}
> show errors, in particular
> {code}
> Instances of javafx.geometry.Insets cannot be created by FXML loader
> Class 'javafx.geometry.Insets' does not support property 'bottom'
> {code}
> examining the code in NetBeans "JavaFX 2 Support" module
> {code:java}
> package org.netbeans.modules.javafx2.editor.completion.beans;
> public final class BeanModelBuilder
> {code}
> The problem seems to start with Insets not having a no argument constructor; 
> and the properties are not recognized because they have no setters. So it 
> looks like immutable objects are not handled.
> Look near the begginning of BeanModelBuilder.process() around
> {code}
> if (c.getParameters().isEmpty() &&
> {code}
> and then BeanModelBuilder.inspectMembers(), addProperty(), findPropertyName
> {code}
> if (!name.startsWith(SET_NAME_PREFIX) || name.length() == 
> SET_NAME_PREFIX_LEN ||
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4739) CSS Go to Declaration , does not work

2020-08-27 Thread Alonso del Arte (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alonso del Arte updated NETBEANS-4739:
--
Description: 
Translated by Al from Spanish:

"Navigation to CSS class declarations does not work.

"Tried it with . . .
 * Ctrl-B
 * right-click, Navigate - go to declaration
 * ctrl + left click

"There's no response.

"Sometimes there's a message in the lower part of the window that says that the 
class declaration can't be found."

Original description:

La navegación a la declaración de clases CSS no funciona.

Probado con . . .
 * Ctrl-B
 * click derecho, Navigate - go to declaration
 * ctrl + left click

No se obtiene respuesta.

En algunas ocasiones, aparece mensaje que dice que no se encuentra la 
declaración de la clase, en el parte inferior de la ventana

Originator confirms problem is specific to 12.0, does not occur in 11.2.

  was:
La navegación a la declaración de clases CSS no funciona.

Probado con . . .
 * Ctrl-B
 * click derecho, Navigate - go to declaration
 * ctrl + left click

No se obtiene respuesta.

En algunas ocasiones, aparece mensaje que dice que no se encuentra la 
declaración de la clase, en el parte inferior de la ventana


> CSS Go to Declaration , does not work
> -
>
> Key: NETBEANS-4739
> URL: https://issues.apache.org/jira/browse/NETBEANS-4739
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - CSS Editor
>Affects Versions: 12.0
> Environment: Windows 10, Xubuntu 20.04, openjdk 11.0.8
> Proyectos con html y css en un único archivo.
> Proyectos con html y css separados en .html y .css
> Proyectos Angular 10 con CSS y con SCSS
>Reporter: Alejandro G. Prieto
>Assignee: Alonso del Arte
>Priority: Major
>
> Translated by Al from Spanish:
> "Navigation to CSS class declarations does not work.
> "Tried it with . . .
>  * Ctrl-B
>  * right-click, Navigate - go to declaration
>  * ctrl + left click
> "There's no response.
> "Sometimes there's a message in the lower part of the window that says that 
> the class declaration can't be found."
> Original description:
> La navegación a la declaración de clases CSS no funciona.
> Probado con . . .
>  * Ctrl-B
>  * click derecho, Navigate - go to declaration
>  * ctrl + left click
> No se obtiene respuesta.
> En algunas ocasiones, aparece mensaje que dice que no se encuentra la 
> declaración de la clase, en el parte inferior de la ventana
> Originator confirms problem is specific to 12.0, does not occur in 11.2.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Assigned] (NETBEANS-4739) CSS Go to Declaration , does not work

2020-08-27 Thread Alonso del Arte (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alonso del Arte reassigned NETBEANS-4739:
-

Assignee: Alonso del Arte

> CSS Go to Declaration , does not work
> -
>
> Key: NETBEANS-4739
> URL: https://issues.apache.org/jira/browse/NETBEANS-4739
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - CSS Editor
>Affects Versions: 12.0
> Environment: Windows 10, Xubuntu 20.04, openjdk 11.0.8
> Proyectos con html y css en un único archivo.
> Proyectos con html y css separados en .html y .css
> Proyectos Angular 10 con CSS y con SCSS
>Reporter: Alejandro G. Prieto
>Assignee: Alonso del Arte
>Priority: Major
>
> La navegación a la declaración de clases CSS no funciona.
> Probado con . . .
>  * Ctrl-B
>  * click derecho, Navigate - go to declaration
>  * ctrl + left click
> No se obtiene respuesta.
> En algunas ocasiones, aparece mensaje que dice que no se encuentra la 
> declaración de la clase, en el parte inferior de la ventana



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4739) CSS Go to Declaration , does not work

2020-08-27 Thread Alonso del Arte (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4739?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186121#comment-17186121
 ] 

Alonso del Arte commented on NETBEANS-4739:
---

Good to know. I'm still on 11.2, not sure when I'll be able to upgrade to 12.x.

> CSS Go to Declaration , does not work
> -
>
> Key: NETBEANS-4739
> URL: https://issues.apache.org/jira/browse/NETBEANS-4739
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - CSS Editor
>Affects Versions: 12.0
> Environment: Windows 10, Xubuntu 20.04, openjdk 11.0.8
> Proyectos con html y css en un único archivo.
> Proyectos con html y css separados en .html y .css
> Proyectos Angular 10 con CSS y con SCSS
>Reporter: Alejandro G. Prieto
>Priority: Major
>
> La navegación a la declaración de clases CSS no funciona.
> Probado con . . .
>  * Ctrl-B
>  * click derecho, Navigate - go to declaration
>  * ctrl + left click
> No se obtiene respuesta.
> En algunas ocasiones, aparece mensaje que dice que no se encuentra la 
> declaración de la clase, en el parte inferior de la ventana



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4739) CSS Go to Declaration , does not work

2020-08-27 Thread Alejandro G. Prieto (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4739?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186117#comment-17186117
 ] 

Alejandro G. Prieto commented on NETBEANS-4739:
---

A small contribution. By downgrading to version 11.2, the problem no longer 
occurs.
Even when creating or opening a project a message similar to: "Building the 
dictionary of classes" appears, which shows that it is doing something that 
version 12 does not do.

Thanks for answering Alonso!

> CSS Go to Declaration , does not work
> -
>
> Key: NETBEANS-4739
> URL: https://issues.apache.org/jira/browse/NETBEANS-4739
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - CSS Editor
>Affects Versions: 12.0
> Environment: Windows 10, Xubuntu 20.04, openjdk 11.0.8
> Proyectos con html y css en un único archivo.
> Proyectos con html y css separados en .html y .css
> Proyectos Angular 10 con CSS y con SCSS
>Reporter: Alejandro G. Prieto
>Priority: Major
>
> La navegación a la declaración de clases CSS no funciona.
> Probado con . . .
>  * Ctrl-B
>  * click derecho, Navigate - go to declaration
>  * ctrl + left click
> No se obtiene respuesta.
> En algunas ocasiones, aparece mensaje que dice que no se encuentra la 
> declaración de la clase, en el parte inferior de la ventana



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4743) NPE in design view when displaying menu bar

2020-08-27 Thread Steve Mellor (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4743?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Steve Mellor updated NETBEANS-4743:
---
Labels:   (was: men)

> NPE in design view when displaying menu bar
> ---
>
> Key: NETBEANS-4743
> URL: https://issues.apache.org/jira/browse/NETBEANS-4743
> Project: NetBeans
>  Issue Type: Bug
>  Components: guibuilder - Code
>Affects Versions: 12.0
> Environment: Java: 14.0.1; OpenJDK 64-Bit Server VM 14.0.1+14
> Runtime: OpenJDK Runtime Environment 14.0.1+14
> System: Mac OS X version 10.15.6 running on x86_64; UTF-8; en_GB (nb)
>Reporter: Steve Mellor
>Priority: Major
> Attachments: menu render failure.png
>
>
> The GUI builder design view fails to render a menu bar
>  
> steps to reproduce:
>  
> Click 'File' -> 'New Project' and create a Maven Java application
> In the project click 'new' --> 'JFrame Form'
> In the form click 'Add From Pallete' -> 'Swing Menues' -> "Menu Bar"
> Error displayed:
> The following exception has been thrown during painting of the form. Use the 
> Navigator window to fix or remove the problematic component.
> java.lang.NullPointerException
>  
> see attached screenshot
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4743) NPE in design view when displaying menu bar

2020-08-27 Thread Steve Mellor (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4743?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Steve Mellor updated NETBEANS-4743:
---
Labels: menu  (was: )

> NPE in design view when displaying menu bar
> ---
>
> Key: NETBEANS-4743
> URL: https://issues.apache.org/jira/browse/NETBEANS-4743
> Project: NetBeans
>  Issue Type: Bug
>  Components: guibuilder - Code
>Affects Versions: 12.0
> Environment: Java: 14.0.1; OpenJDK 64-Bit Server VM 14.0.1+14
> Runtime: OpenJDK Runtime Environment 14.0.1+14
> System: Mac OS X version 10.15.6 running on x86_64; UTF-8; en_GB (nb)
>Reporter: Steve Mellor
>Priority: Major
>  Labels: menu
> Attachments: menu render failure.png
>
>
> The GUI builder design view fails to render a menu bar
>  
> steps to reproduce:
>  
> Click 'File' -> 'New Project' and create a Maven Java application
> In the project click 'new' --> 'JFrame Form'
> In the form click 'Add From Pallete' -> 'Swing Menues' -> "Menu Bar"
> Error displayed:
> The following exception has been thrown during painting of the form. Use the 
> Navigator window to fix or remove the problematic component.
> java.lang.NullPointerException
>  
> see attached screenshot
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4743) NPE in design view when displaying menu bar

2020-08-27 Thread Steve Mellor (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4743?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Steve Mellor updated NETBEANS-4743:
---
Labels: men  (was: )

> NPE in design view when displaying menu bar
> ---
>
> Key: NETBEANS-4743
> URL: https://issues.apache.org/jira/browse/NETBEANS-4743
> Project: NetBeans
>  Issue Type: Bug
>  Components: guibuilder - Code
>Affects Versions: 12.0
> Environment: Java: 14.0.1; OpenJDK 64-Bit Server VM 14.0.1+14
> Runtime: OpenJDK Runtime Environment 14.0.1+14
> System: Mac OS X version 10.15.6 running on x86_64; UTF-8; en_GB (nb)
>Reporter: Steve Mellor
>Priority: Major
>  Labels: men
> Attachments: menu render failure.png
>
>
> The GUI builder design view fails to render a menu bar
>  
> steps to reproduce:
>  
> Click 'File' -> 'New Project' and create a Maven Java application
> In the project click 'new' --> 'JFrame Form'
> In the form click 'Add From Pallete' -> 'Swing Menues' -> "Menu Bar"
> Error displayed:
> The following exception has been thrown during painting of the form. Use the 
> Navigator window to fix or remove the problematic component.
> java.lang.NullPointerException
>  
> see attached screenshot
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4739) CSS Go to Declaration , does not work

2020-08-27 Thread Alonso del Arte (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4739?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186090#comment-17186090
 ] 

Alonso del Arte commented on NETBEANS-4739:
---

Please post later issues in English if you can. For this one, I'm happy to 
translate. Please verify I've translated correctly:
 

"Navigation to CSS class declarations does not work.

"Tried it with . . .
 * Ctrl-B
 * right-click, Navigate - go to declaration
 * ctrl + left click

"There's no response.

"Sometimes there's a message in the lower part of the window that says that the 
class declaration can't be found."

Since I've never used NetBeans for HTML or PHP (aside from Javadoc), I can't 
try to reproduce right now...

> CSS Go to Declaration , does not work
> -
>
> Key: NETBEANS-4739
> URL: https://issues.apache.org/jira/browse/NETBEANS-4739
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - CSS Editor
>Affects Versions: 12.0
> Environment: Windows 10, Xubuntu 20.04, openjdk 11.0.8
> Proyectos con html y css en un único archivo.
> Proyectos con html y css separados en .html y .css
> Proyectos Angular 10 con CSS y con SCSS
>Reporter: Alejandro G. Prieto
>Priority: Major
>
> La navegación a la declaración de clases CSS no funciona.
> Probado con . . .
>  * Ctrl-B
>  * click derecho, Navigate - go to declaration
>  * ctrl + left click
> No se obtiene respuesta.
> En algunas ocasiones, aparece mensaje que dice que no se encuentra la 
> declaración de la clase, en el parte inferior de la ventana



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4730) Code completion is very slow on larger PHP projects

2020-08-27 Thread Alonso del Arte (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4730?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186083#comment-17186083
 ] 

Alonso del Arte commented on NETBEANS-4730:
---

Have you tried disabling background scanning of projects for external changes? 
It may or may not help in your situation, but it sure did help on my old 
Gateway.

> Code completion is very slow on larger PHP projects
> ---
>
> Key: NETBEANS-4730
> URL: https://issues.apache.org/jira/browse/NETBEANS-4730
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Code Analysis
>Affects Versions: 12.0, 11.2
> Environment: Windows 10 64bit
> 20GB RAM (NB peak is usually around 2GB)
> Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz (4 phys cores, 8 logical)
>Reporter: Matěj Kmínek
>Priority: Major
>  Labels: codecompletion
> Attachments: netbeans_stuck.nps
>
>
> I'm currently working on PHP project. Project is composed using composer, 
> using our subgit modules. Currently we have around 70 modules in the project. 
> Each module consists from up to 15 php classes.
> Code Completion got already very slow with such amount of files. It takes me 
> up to 13-20 secs to invoke code completion to see list of some object methods 
> (including $this-> , which I guess could be extremely fast). 
> Steps taken to try to fasten up a bit:
>  * Removed project folder from Window Defender scanner - problem persisted 
> with no noticeable speedup
>  * Disabled Windows Defender completely - problem persisted with no 
> noticeable speedup
>  * Updated from NB 11.2 to 12.0 - problem persisted with no noticeable speedup
>  * Changed Java SDK from 12.0.1 to 14.0.2
>  * Tried set max heap memory limit to 4GB - problem persisted with no 
> noticeable speedup
>  
> Invocation of code completion popup rises processor usage from <10% to around 
> 50%. Also, increased memory usage to about 2GB.
>  
> As the system I am writing is proprietary, I cant simply send the source 
> code. However we can definitely arrange some online screensharing using Skype 
> / Hangouts, or VNC to online test.
> Attaching snapshot of one code completion invocation. 
>  
> During searching the issues, I found out there could be a problem with some 
> native windows related file listing functions - perhaps the problem lies 
> there? But I tried another IDEs, which works flawlessly on this big project, 
> so they either use some different functions or there could be truly a bug in 
> NB.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4728) Bloqueo de comandos alt + insert

2020-08-27 Thread Alonso del Arte (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4728?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186079#comment-17186079
 ] 

Alonso del Arte commented on NETBEANS-4728:
---

Clarification: by "empty area of the source editor" I mean where a tab would 
go. I'm not referring to whitespace in the source file.

However, I also get a "blocking sound" if the cursor is on a Javadoc comment. I 
think that's reasonable.

> Bloqueo de comandos alt + insert
> 
>
> Key: NETBEANS-4728
> URL: https://issues.apache.org/jira/browse/NETBEANS-4728
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 12.0
>Reporter: Jeremy Bolaños
>Assignee: Alonso del Arte
>Priority: Blocker
> Fix For: 11.2
>
>
> No funcionan los comandos alt + insert
>  
> El ordenador responde con sonido de bloqueo, tampoco funciona "complete code"



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-4728) Bloqueo de comandos alt + insert

2020-08-27 Thread Alonso del Arte (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4728?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alonso del Arte resolved NETBEANS-4728.
---
Fix Version/s: 11.2
 Assignee: Alonso del Arte
   Resolution: Incomplete

The keyboard shortcut Alt-Insert correctly brings up the Generate pop-up 
dialog, _provided that_ the source editor has focus _and_ the cursor is on a 
specific source file.

If I click on the tab for another source file and then click on an empty area 
of the source editor, I get a "blocking sound." This the only way I've been 
able to reproduce the blocking sound.

But if something else has focus, like the project overview or the Javadoc 
window, the menu command Source > Insert Code... is grayed out and the keyboard 
shortcut does nothing at all.

I think this works as it should. If it doesn't work for you as I've described 
it, then you should file another issue, preferably in English, and definitely 
with more context, such as source or a screenshot.

> Bloqueo de comandos alt + insert
> 
>
> Key: NETBEANS-4728
> URL: https://issues.apache.org/jira/browse/NETBEANS-4728
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 12.0
>Reporter: Jeremy Bolaños
>Assignee: Alonso del Arte
>Priority: Blocker
> Fix For: 11.2
>
>
> No funcionan los comandos alt + insert
>  
> El ordenador responde con sonido de bloqueo, tampoco funciona "complete code"



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4728) Bloqueo de comandos alt + insert

2020-08-27 Thread Alonso del Arte (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4728?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186066#comment-17186066
 ] 

Alonso del Arte commented on NETBEANS-4728:
---

I certify that the translation Laszlo got is correct. Jeremy's complaining that 
the keyboard shortcut Alt-Insert doesn't work, and neither does the menu 
command Source > Insert code...

> Bloqueo de comandos alt + insert
> 
>
> Key: NETBEANS-4728
> URL: https://issues.apache.org/jira/browse/NETBEANS-4728
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 12.0
>Reporter: Jeremy Bolaños
>Priority: Blocker
>
> No funcionan los comandos alt + insert
>  
> El ordenador responde con sonido de bloqueo, tampoco funciona "complete code"



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4556) Special Characters euro and pound are not displaying properly

2020-08-27 Thread Christian Lenz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4556?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186059#comment-17186059
 ] 

Christian Lenz commented on NETBEANS-4556:
--

Can you figure out which encoding this file have? On which system you are? 
Windows? If yes, then maybe you have the window-8859-1 or smth like that 
instead of utf-8. Check this out. There is also a plugin to check the encoding: 
https://github.com/junichi11/netbeans-encoding-plugin install it and check it 
out which encoding the file have. And if it has the wrong encoding, switch to 
utf-8 and have a look then.

> Special Characters euro and pound are not displaying properly
> -
>
> Key: NETBEANS-4556
> URL: https://issues.apache.org/jira/browse/NETBEANS-4556
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Code
>Affects Versions: 12.0
>Reporter: Vipin PV
>Assignee: Lokesh Chinnaga
>Priority: Major
> Fix For: 12.0, 11.2
>
> Attachments: Netbeans_Error.jpg
>
>
> Hi Suport,
>  
> I'm running Netbeans 12.0 and working on .PHP file and when I edit this file 
> by opening individually, then the special characters for Euro and Pound are 
> showing with unknow characters. But if i open this file from the project, 
> then it is showing properly.
> Is there any issue with encoding?
> Could you please review this and provide support as soon as possible?
>  
> Thanks,
> Vipin



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4558) Add a keymap for VS Code

2020-08-27 Thread Christian Lenz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4558?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186058#comment-17186058
 ] 

Christian Lenz commented on NETBEANS-4558:
--

Would be cool. BTW you can configure "Go to File".

> Add a keymap for VS Code
> 
>
> Key: NETBEANS-4558
> URL: https://issues.apache.org/jira/browse/NETBEANS-4558
> Project: NetBeans
>  Issue Type: Improvement
>  Components: editor - Key bindings
>Affects Versions: 12.0
>Reporter: Anthony Vanelverdinghe
>Priority: Major
>  Labels: keymap
>
> As a VS Code user, I'd like to be able to use the same shortcuts in NetBeans. 
> While some shortcuts can be configured, others can't (e.g. `Go to File...` 
> (Ctrl+P in VS Code)).



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4738) On Windows, Netbeans should launch cmd (or PowerShell) instead of requiring Cygwin

2020-08-27 Thread Christian Lenz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4738?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186053#comment-17186053
 ] 

Christian Lenz commented on NETBEANS-4738:
--

Also we have this ticket: https://issues.apache.org/jira/browse/NETBEANS-181

> On Windows, Netbeans should launch cmd (or PowerShell) instead of requiring 
> Cygwin
> --
>
> Key: NETBEANS-4738
> URL: https://issues.apache.org/jira/browse/NETBEANS-4738
> Project: NetBeans
>  Issue Type: New Feature
>  Components: cnd - Terminalemulator
>Reporter: Michele Costabile
>Priority: Major
>
> Netbeans should use a ubuquitous command line interface on Windows, rather 
> than requiring installation of an old unix emulation.
> These days, one could have a complete Ubuntu emulation installed on Windows 
> 10, or at lest a working MSys shell installed with GIt. Few people woould 
> find installing Cygwin a traightforward configuration step.
> Further, Netbeans should at least use a command line interface which is 
> always there, like cmd.exe. Customization to user content might be a plus, 
> but only after defaults work out of the box.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-4738) On Windows, Netbeans should launch cmd (or PowerShell) instead of requiring Cygwin

2020-08-27 Thread Christian Lenz (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Christian Lenz resolved NETBEANS-4738.
--
Resolution: Duplicate

Duplicate of: https://issues.apache.org/jira/browse/NETBEANS-182

> On Windows, Netbeans should launch cmd (or PowerShell) instead of requiring 
> Cygwin
> --
>
> Key: NETBEANS-4738
> URL: https://issues.apache.org/jira/browse/NETBEANS-4738
> Project: NetBeans
>  Issue Type: New Feature
>  Components: cnd - Terminalemulator
>Reporter: Michele Costabile
>Priority: Major
>
> Netbeans should use a ubuquitous command line interface on Windows, rather 
> than requiring installation of an old unix emulation.
> These days, one could have a complete Ubuntu emulation installed on Windows 
> 10, or at lest a working MSys shell installed with GIt. Few people woould 
> find installing Cygwin a traightforward configuration step.
> Further, Netbeans should at least use a command line interface which is 
> always there, like cmd.exe. Customization to user content might be a plus, 
> but only after defaults work out of the box.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4738) On Windows, Netbeans should launch cmd (or PowerShell) instead of requiring Cygwin

2020-08-27 Thread Christian Lenz (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Christian Lenz updated NETBEANS-4738:
-
Component/s: cnd - Terminalemulator

> On Windows, Netbeans should launch cmd (or PowerShell) instead of requiring 
> Cygwin
> --
>
> Key: NETBEANS-4738
> URL: https://issues.apache.org/jira/browse/NETBEANS-4738
> Project: NetBeans
>  Issue Type: New Feature
>  Components: cnd - Terminalemulator
>Reporter: Michele Costabile
>Priority: Major
>
> Netbeans should use a ubuquitous command line interface on Windows, rather 
> than requiring installation of an old unix emulation.
> These days, one could have a complete Ubuntu emulation installed on Windows 
> 10, or at lest a working MSys shell installed with GIt. Few people woould 
> find installing Cygwin a traightforward configuration step.
> Further, Netbeans should at least use a command line interface which is 
> always there, like cmd.exe. Customization to user content might be a plus, 
> but only after defaults work out of the box.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4738) On Windows, Netbeans should launch cmd (or PowerShell) instead of requiring Cygwin

2020-08-27 Thread Christian Lenz (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Christian Lenz updated NETBEANS-4738:
-
Issue Type: New Feature  (was: Bug)

> On Windows, Netbeans should launch cmd (or PowerShell) instead of requiring 
> Cygwin
> --
>
> Key: NETBEANS-4738
> URL: https://issues.apache.org/jira/browse/NETBEANS-4738
> Project: NetBeans
>  Issue Type: New Feature
>Reporter: Michele Costabile
>Priority: Major
>
> Netbeans should use a ubuquitous command line interface on Windows, rather 
> than requiring installation of an old unix emulation.
> These days, one could have a complete Ubuntu emulation installed on Windows 
> 10, or at lest a working MSys shell installed with GIt. Few people woould 
> find installing Cygwin a traightforward configuration step.
> Further, Netbeans should at least use a command line interface which is 
> always there, like cmd.exe. Customization to user content might be a plus, 
> but only after defaults work out of the box.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4745) fxml editor shows errors for Insets (immutable objects in general?)

2020-08-27 Thread Ernie Rael (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4745?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17186012#comment-17186012
 ] 

Ernie Rael commented on NETBEANS-4745:
--

This was reported against NB-8.1 
https://bz.apache.org/netbeans/show_bug.cgi?id=254824

> fxml editor shows errors for Insets (immutable objects in general?)
> ---
>
> Key: NETBEANS-4745
> URL: https://issues.apache.org/jira/browse/NETBEANS-4745
> Project: NetBeans
>  Issue Type: Bug
>  Components: javafx - Editor
>Reporter: Ernie Rael
>Priority: Major
>
> To recreate:
> NewProject > JavaWithMaven > FXML JavaFX Maven Archetype (Gluon)
> Open primary.fxml, in "other sources" "source/main/resources" 
> Observe that the lines like:
> {code}
> 
> {code}
> show errors, in particular
> {code}
> Instances of javafx.geometry.Insets cannot be created by FXML loader
> Class 'javafx.geometry.Insets' does not support property 'bottom'
> {code}
> examining the code in NetBeans "JavaFX 2 Support" module
> {code:java}
> package org.netbeans.modules.javafx2.editor.completion.beans;
> public final class BeanModelBuilder
> {code}
> The problem seems to start with Insets not having a no argument constructor; 
> and the properties are not recognized because they have no setters. So it 
> looks like immutable objects are not handled.
> Look near the begginning of BeanModelBuilder.process() around
> {code}
> if (c.getParameters().isEmpty() &&
> {code}
> and then BeanModelBuilder.inspectMembers(), addProperty(), findPropertyName
> {code}
> if (!name.startsWith(SET_NAME_PREFIX) || name.length() == 
> SET_NAME_PREFIX_LEN ||
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4748) Ctrl-click on a declaration should go to usages

2020-08-27 Thread Michele Costabile (Jira)
Michele Costabile created NETBEANS-4748:
---

 Summary: Ctrl-click on a declaration should go to usages
 Key: NETBEANS-4748
 URL: https://issues.apache.org/jira/browse/NETBEANS-4748
 Project: NetBeans
  Issue Type: Bug
Reporter: Michele Costabile


Clicking Ctrl-click on a variable goes to its dedlaration. Clicking again 
prints a message in the status line, like "Cannot perform Goto declaration 
here".

NetBeans could instead goto usages of what is declared under the cursor in the 
current project.

This would streamline the flow rather than resorting to the clunky Alt-F7



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4747) Illegal reflective access by com.thoughtworks.xstream.converters.collections.TreeMapConverter

2020-08-27 Thread David Gradwell (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17185805#comment-17185805
 ] 

David Gradwell commented on NETBEANS-4747:
--

The x-stream converters are described at:

[https://x-stream.github.io/javadoc/overview-summary.html]

 

The latest release is 1.4.12.

Can we check that the Maven WAR plugin uses this ?

> Illegal reflective access by 
> com.thoughtworks.xstream.converters.collections.TreeMapConverter
> -
>
> Key: NETBEANS-4747
> URL: https://issues.apache.org/jira/browse/NETBEANS-4747
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Maven
>Affects Versions: 12.0
>Reporter: David Gradwell
>Priority: Minor
>
> When building a Java servlet with Maven (which generates a .war), the 
> maven-war-plugin always generates the following warning, whatever servlet we 
> are building.
> Please could NetBeans 12.1 use a later version of maven-war-plugin.
> --- maven-war-plugin:2.3:war (default-war) @ PKBHtmlServlet ---
> WARNING: An illegal reflective access operation has occurred
> WARNING: Illegal reflective access by 
> com.thoughtworks.xstream.converters.collections.TreeMapConverter 
> (file:/Users/davidjlgradwell/.m2/repository/com/thoughtworks/xstream/xstream/1.4.3/xstream-1.4.3.jar)
>  to field java.util.TreeMap.comparator
> WARNING: Please consider reporting this to the maintainers of 
> com.thoughtworks.xstream.converters.collections.TreeMapConverter
> WARNING: Use --illegal-access=warn to enable warnings of further illegal 
> reflective access operations
> WARNING: All illegal access operations will be denied in a future release
> Packaging webapp
> Assembling webapp [PKBHtmlServlet] in 
> [/Users/davidjlgradwell/NetBeansDev/PKBHtmlServlet/target/PKBHtmlServlet-1.0]
> Processing war project
> Copying webapp resources 
> [/Users/davidjlgradwell/NetBeansDev/PKBHtmlServlet/src/main/webapp]
> Webapp assembled in [95 msecs]
> Building war: 
> /Users/davidjlgradwell/NetBeansDev/PKBHtmlServlet/target/PKBHtmlServlet-1.0.war
> 
> BUILD SUCCESS
> 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4747) Illegal reflective access by com.thoughtworks.xstream.converters.collections.TreeMapConverter

2020-08-27 Thread David Gradwell (Jira)
David Gradwell created NETBEANS-4747:


 Summary: Illegal reflective access by 
com.thoughtworks.xstream.converters.collections.TreeMapConverter
 Key: NETBEANS-4747
 URL: https://issues.apache.org/jira/browse/NETBEANS-4747
 Project: NetBeans
  Issue Type: Bug
  Components: javaee - Maven
Affects Versions: 12.0
Reporter: David Gradwell


When building a Java servlet with Maven (which generates a .war), the 
maven-war-plugin always generates the following warning, whatever servlet we 
are building.

Please could NetBeans 12.1 use a later version of maven-war-plugin.

--- maven-war-plugin:2.3:war (default-war) @ PKBHtmlServlet ---
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by 
com.thoughtworks.xstream.converters.collections.TreeMapConverter 
(file:/Users/davidjlgradwell/.m2/repository/com/thoughtworks/xstream/xstream/1.4.3/xstream-1.4.3.jar)
 to field java.util.TreeMap.comparator
WARNING: Please consider reporting this to the maintainers of 
com.thoughtworks.xstream.converters.collections.TreeMapConverter
WARNING: Use --illegal-access=warn to enable warnings of further illegal 
reflective access operations
WARNING: All illegal access operations will be denied in a future release
Packaging webapp
Assembling webapp [PKBHtmlServlet] in 
[/Users/davidjlgradwell/NetBeansDev/PKBHtmlServlet/target/PKBHtmlServlet-1.0]
Processing war project
Copying webapp resources 
[/Users/davidjlgradwell/NetBeansDev/PKBHtmlServlet/src/main/webapp]
Webapp assembled in [95 msecs]
Building war: 
/Users/davidjlgradwell/NetBeansDev/PKBHtmlServlet/target/PKBHtmlServlet-1.0.war

BUILD SUCCESS




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1823) JavaFX Scene Builder Integration is still broken (Since Java SE 8u40)

2020-08-27 Thread John Green (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1823?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17185664#comment-17185664
 ] 

John Green commented on NETBEANS-1823:
--

[~errael], yes that's right.  I have the problem on Mac.  My update is that the 
version specified in the Environment (High Sierra) is not the only version.  
It's also on the latest version, Catalina.

> JavaFX Scene Builder Integration is still broken (Since Java SE 8u40)
> -
>
> Key: NETBEANS-1823
> URL: https://issues.apache.org/jira/browse/NETBEANS-1823
> Project: NetBeans
>  Issue Type: Bug
>  Components: javafx - Editor
>Affects Versions: 10.0
> Environment: MacOS High Sierra; NetBeans 10.vc5 running on JDK 10.0.1 
>  
>Reporter: r-go
>Priority: Major
>  Labels: 10.0-vc5, clos
>
> NetBeans -> Preferences (Options) -> Java ->JavaFX 
> The only path supported is one that refers to long abandoned (since Java SE 
> 8u40) Oracle's Scene Builder. JavaFX Scene Builder provided by Gluon can not 
> be registered and used in NetBeans - which is kind of nonsense as its in fact 
> the only maintained version of JavaFX scene builder, recommended even by 
> oracle. 
> As JavaFX scene builder is effectively "just" an external .fxml file editor - 
>  the integration with NB  is trivial (but for some strange reasons it is 
> missing from NB for years now) - please fix it if possible. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists