[jira] [Created] (NETBEANS-4039) Create an SPI for supporting color profile change

2020-03-18 Thread Laszlo Kishalmi (Jira)
Laszlo Kishalmi created NETBEANS-4039:
-

 Summary: Create an SPI for supporting color profile change
 Key: NETBEANS-4039
 URL: https://issues.apache.org/jira/browse/NETBEANS-4039
 Project: NetBeans
  Issue Type: Improvement
  Components: platform - Window System
Reporter: Jaroslav Tulach
Assignee: Laszlo Kishalmi


The current LaFPanel uses reflection to change the color profile on the editor. 
It would be better if we can have an SPI interface for color profile change.



--
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-3469) Cache PNG versions of loaded SVG icons

2020-03-18 Thread Eirik Bakke (Jira)


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

Eirik Bakke commented on NETBEANS-3469:
---

It's actually useful to implement this to solve NETBEANS-3468 (see comment 
there). For the PNG files in the cache, be sure to use the same naming 
convention as is expected by Toolkit.getImage() on MacOS. See also the 
discussion in NETBEANS-1583 about these naming conventions.

> Cache PNG versions of loaded SVG icons
> --
>
> Key: NETBEANS-3469
> URL: https://issues.apache.org/jira/browse/NETBEANS-3469
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Other
>Affects Versions: 11.3
>Reporter: Eirik Bakke
>Priority: Minor
>  Labels: HiDPI
>
> Support for SVG file loading via ImageUtilities was added in NETBEANS-2604. 
> Once a substantial number of icons have been migrated to SVG versions ( 
> NETBEANS-2617 ), we should consider doing some performance work to ensure 
> that icons can be loaded as quickly as before in the common case. See the 
> benchmark and discussion in https://github.com/apache/netbeans/pull/1278 .
> timboudreau had the idea of caching rasterized versions of the SVG icons in 
> the cache directory the first time they are loaded (and painted at a specific 
> HiDPI scaling factor). I'd guess that this could speed up SVG file loading by 
> about 4x. If all icons are cached, it would also save the overhead of loading 
> the ~3MB Batik library JARs.



--
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] [Comment Edited] (NETBEANS-3468) Make HiDPI (Retina) icons work in MacOS menu bar

2020-03-18 Thread Eirik Bakke (Jira)


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

Eirik Bakke edited comment on NETBEANS-3468 at 3/18/20, 10:51 PM:
--

>From mailing list discussions, it seems that NetBeans will continue to be 
>built on Java 8 for the forseeable future. The java.lang.reflect.Proxy 
>interface could be used to implement MultiResolutionImage by reflection, but 
>it does not seem possible to simultaneously have the proxy object extend from 
>Image (or BufferedImage), which is required here.

A better approach, for backwards-compatibility with Java 8, is to implement 
NETBEANS-3469, having ImageUtilities write out pre-rendered PNG files at 1x and 
2x resolution into the NetBeans cache directory, following the prescribed MacOS 
naming convention (e.g. "icon.png" and "i...@2x.png"), and then using 
Toolkit.getImage(URL) to produce the actual Image object (on MacOS only). This 
will produce retina-capable images on both Java 8 and Java 9 and above.

(Note that MacOS uses only 1x and 2x scaling, unlike Windows, where arbitrary 
HiDPI scalings can occur.)


was (Author: ebakke):
>From mailing list discussions, it seems that NetBeans will continue to be 
>built on Java 8 for the forseeable future. The java.lang.reflect.Proxy 
>interface could be used to implement MultiResolutionImage by reflection, but 
>it does not seem possible to simultaneously have the Proxy object extend from 
>Image (or BufferedImage), which is required here.

A better approach, for backwards-compatibility with Java 8, is to implement 
NETBEANS-3469, having ImageUtilities write out pre-rendered PNG files at 1x and 
2x resolution into the NetBeans cache directory, following the prescribed MacOS 
naming convention (e.g. "icon.png" and "i...@2x.png"), and then using 
Toolkit.getImage(URL) to produce the actual Image object (on MacOS only). This 
will produce retina-capable images on both Java 8 and Java 9 and above.

(Note that MacOS uses only 1x and 2x scaling, unlike Windows, where arbitrary 
HiDPI scalings can occur.)

> Make HiDPI (Retina) icons work in MacOS menu bar
> 
>
> Key: NETBEANS-3468
> URL: https://issues.apache.org/jira/browse/NETBEANS-3468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Other
>Affects Versions: 11.3
> Environment: MacOS with retina display
>Reporter: Eirik Bakke
>Priority: Minor
>  Labels: HiDPI
> Attachments: menuicon_retina.png
>
>
> HiDPI icons, introduced in NETBEANS-2614 and NETBEANS-2604, do not yet show 
> up in the correct resolution when used in the menu bar on MacOS. See the 
> attached screenshot (from a NetBeans Platform application). This should be 
> fixed.
> Note that we have only so far introduced HiDPI icons for the "Undo" and 
> "Redo" actions.
> Emilian Bold probably figured this out in his earlier experimental Retina 
> support branch; see RetinaMultiResolutionImage in 
> https://github.com/emilianbold/nextbeans/commit/0f99dba0c1b3e8e0bc4e7cec407b53d30e85ead1
>  . If the solution involves implementing MultiResolutionImage, then make sure 
> not to do this on Windows (to avoid 
> https://bugs.openjdk.java.net/browse/JDK-8212226 ).



--
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-3468) Make HiDPI (Retina) icons work in MacOS menu bar

2020-03-18 Thread Eirik Bakke (Jira)


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

Eirik Bakke commented on NETBEANS-3468:
---

>From mailing list discussions, it seems that NetBeans will continue to be 
>built on Java 8 for the forseeable future. The java.lang.reflect.Proxy 
>interface could be used to implement MultiResolutionImage by reflection, but 
>it does not seem possible to simultaneously have the Proxy object extend from 
>Image (or BufferedImage), which is required here.

A better approach, for backwards-compatibility with Java 8, is to implement 
NETBEANS-3469, having ImageUtilities write out pre-rendered PNG files at 1x and 
2x resolution into the NetBeans cache directory, following the prescribed MacOS 
naming convention (e.g. "icon.png" and "i...@2x.png"), and then using 
Toolkit.getImage(URL) to produce the actual Image object (on MacOS only). This 
will produce retina-capable images on both Java 8 and Java 9 and above.

(Note that MacOS uses only 1x and 2x scaling, unlike Windows, where arbitrary 
HiDPI scalings can occur.)

> Make HiDPI (Retina) icons work in MacOS menu bar
> 
>
> Key: NETBEANS-3468
> URL: https://issues.apache.org/jira/browse/NETBEANS-3468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Other
>Affects Versions: 11.3
> Environment: MacOS with retina display
>Reporter: Eirik Bakke
>Priority: Minor
>  Labels: HiDPI
> Attachments: menuicon_retina.png
>
>
> HiDPI icons, introduced in NETBEANS-2614 and NETBEANS-2604, do not yet show 
> up in the correct resolution when used in the menu bar on MacOS. See the 
> attached screenshot (from a NetBeans Platform application). This should be 
> fixed.
> Note that we have only so far introduced HiDPI icons for the "Undo" and 
> "Redo" actions.
> Emilian Bold probably figured this out in his earlier experimental Retina 
> support branch; see RetinaMultiResolutionImage in 
> https://github.com/emilianbold/nextbeans/commit/0f99dba0c1b3e8e0bc4e7cec407b53d30e85ead1
>  . If the solution involves implementing MultiResolutionImage, then make sure 
> not to do this on Windows (to avoid 
> https://bugs.openjdk.java.net/browse/JDK-8212226 ).



--
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-3469) Cache PNG versions of loaded SVG icons

2020-03-18 Thread Eirik Bakke (Jira)


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

Eirik Bakke updated NETBEANS-3469:
--
Labels: HiDPI  (was: )

> Cache PNG versions of loaded SVG icons
> --
>
> Key: NETBEANS-3469
> URL: https://issues.apache.org/jira/browse/NETBEANS-3469
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Other
>Affects Versions: 11.3
>Reporter: Eirik Bakke
>Priority: Minor
>  Labels: HiDPI
>
> Support for SVG file loading via ImageUtilities was added in NETBEANS-2604. 
> Once a substantial number of icons have been migrated to SVG versions ( 
> NETBEANS-2617 ), we should consider doing some performance work to ensure 
> that icons can be loaded as quickly as before in the common case. See the 
> benchmark and discussion in https://github.com/apache/netbeans/pull/1278 .
> timboudreau had the idea of caching rasterized versions of the SVG icons in 
> the cache directory the first time they are loaded (and painted at a specific 
> HiDPI scaling factor). I'd guess that this could speed up SVG file loading by 
> about 4x. If all icons are cached, it would also save the overhead of loading 
> the ~3MB Batik library JARs.



--
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-3941) FlatLAF: search results OutlineView has wrong font color

2020-03-18 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated NETBEANS-3941:
-
Labels: pull-request-available  (was: )

> FlatLAF: search results OutlineView has wrong font color
> 
>
> Key: NETBEANS-3941
> URL: https://issues.apache.org/jira/browse/NETBEANS-3941
> Project: NetBeans
>  Issue Type: Bug
> Environment: Product Version: Apache NetBeans IDE DEV (Build 
> dev-21ee047321638132b495fc8dd46be3aeeb39a4c1)
> Java: 15-ea; OpenJDK 64-Bit Server VM 15-ea+12-431
> Runtime: OpenJDK Runtime Environment 15-ea+12-431
> System: Mac OS X version 10.13.6 running on x86_64; UTF-8; en_DE (nb)
> User directory: /Users/rami/Library/Application Support/NetBeans/dev
> Cache directory: /Users/rami/Library/Caches/NetBeans/dev
>Reporter: Rami Swailem
>Assignee: Karl Tauber
>Priority: Trivial
>  Labels: pull-request-available
> Attachments: Screen Shot 2020-03-03 at 12.04.35.png
>
>
> Please see attached screenshot.
> The first column is ok, the others are not
>  



--
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-4037) Debugger slow - taken profiler snapshots

2020-03-18 Thread Jaroslav Tulach (Jira)


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

Jaroslav Tulach reassigned NETBEANS-4037:
-

Assignee: Martin Entlicher  (was: Ari Entlich)

> Debugger slow - taken profiler snapshots
> 
>
> Key: NETBEANS-4037
> URL: https://issues.apache.org/jira/browse/NETBEANS-4037
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java
>Affects Versions: 8.2, 11.1, 11.2, 11.3
>Reporter: matteodg
>Assignee: Martin Entlicher
>Priority: Major
>  Labels: performance
> Fix For: 12.0
>
> Attachments: 
> org.netbeans.modules.debugger.jpda.ui.SourcePath.annotate.npss, 
> org.netbeans.modules.debugger.jpda.ui.SourcePath.getURL.npss
>
>
> We have a pretty big NetBeans Platform Application (~180 modules and 5 
> suites) and when the debugger reaches the first breakpoint it got stuck: the 
> tabs Debugging, Variables, Breakpoints, etc. are all with a "Please wait..." 
> node and with the NetBeans sampler I took a few snapshots highlighting it is 
> spending a lot of time on calls like:
>  * {{org.netbeans.modules.debugger.jpda.ui.SourcePath.getURL()}}
>  * {{org.netbeans.modules.debugger.jpda.ui.SourcePath.annotate()}}
> which at the end boil down to a lot of calls like:
>  * java.util.concurrent.CopyOnWriteArrayList.remove()
>  * java.io.File.isFile()
> Attached the snapshots.
> Then if I press Continue the debugger remain stuck: now Pause and Continue 
> buttons in the toolbar are disabled...
> I kept close and restarting NetBeans but no luck... I remember got this 
> behavior even with NB 8.2, sometimes though it goes through and I'm able to 
> debug, but very rarely!
>  



--
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-4037) Debugger slow - taken profiler snapshots

2020-03-18 Thread Jaroslav Tulach (Jira)


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

Jaroslav Tulach reassigned NETBEANS-4037:
-

Assignee: Ari Entlich

> Debugger slow - taken profiler snapshots
> 
>
> Key: NETBEANS-4037
> URL: https://issues.apache.org/jira/browse/NETBEANS-4037
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java
>Affects Versions: 8.2, 11.1, 11.2, 11.3
>Reporter: matteodg
>Assignee: Ari Entlich
>Priority: Major
>  Labels: performance
> Fix For: 12.0
>
> Attachments: 
> org.netbeans.modules.debugger.jpda.ui.SourcePath.annotate.npss, 
> org.netbeans.modules.debugger.jpda.ui.SourcePath.getURL.npss
>
>
> We have a pretty big NetBeans Platform Application (~180 modules and 5 
> suites) and when the debugger reaches the first breakpoint it got stuck: the 
> tabs Debugging, Variables, Breakpoints, etc. are all with a "Please wait..." 
> node and with the NetBeans sampler I took a few snapshots highlighting it is 
> spending a lot of time on calls like:
>  * {{org.netbeans.modules.debugger.jpda.ui.SourcePath.getURL()}}
>  * {{org.netbeans.modules.debugger.jpda.ui.SourcePath.annotate()}}
> which at the end boil down to a lot of calls like:
>  * java.util.concurrent.CopyOnWriteArrayList.remove()
>  * java.io.File.isFile()
> Attached the snapshots.
> Then if I press Continue the debugger remain stuck: now Pause and Continue 
> buttons in the toolbar are disabled...
> I kept close and restarting NetBeans but no luck... I remember got this 
> behavior even with NB 8.2, sometimes though it goes through and I'm able to 
> debug, but very rarely!
>  



--
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



[netbeans] branch master updated (1de7b63 -> b39e15e)

2020-03-18 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


from 1de7b63  Merge pull request #2024 from DevCharly/flatlaf-0.28
 add b39e15e  [NETBEANS-3942] FlatLaf: fix editor annotations when 
switching LaF and switching color profile too on restart

No new revisions were added by this update.

Summary of changes:
 .../src/org/netbeans/core/windows/options/LafPanel.java| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)


-
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-3942) Breakpoint background color in FlatLaF prevents reading text

2020-03-18 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated NETBEANS-3942:
-
Labels: pull-request-available  (was: )

> Breakpoint background color in FlatLaF prevents reading text
> 
>
> Key: NETBEANS-3942
> URL: https://issues.apache.org/jira/browse/NETBEANS-3942
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Jaroslav Tulach
>Assignee: Karl Tauber
>Priority: Minor
>  Labels: pull-request-available
> Attachments: image-2020-03-17-18-16-27-097.png, nb-breakpoints.png
>
>
> I am trying NetBeans 11.3 and FlatLaF dark and I have a feeling that colors 
> of various debugging background lines were not adjusted. At least I have hard 
> time reading text under a breakpoint (too red) or current line (too green).



--
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-4038) Add javadoc for JDK 14 General-Availability Release

2020-03-18 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated NETBEANS-4038:
-
Labels: pull-request-available  (was: )

> Add javadoc for JDK 14 General-Availability Release
> ---
>
> Key: NETBEANS-4038
> URL: https://issues.apache.org/jira/browse/NETBEANS-4038
> Project: NetBeans
>  Issue Type: Improvement
>  Components: java - Javadoc
>Affects Versions: 12.0, 11.3
>Reporter: Jose
>Assignee: Jose
>Priority: Minor
>  Labels: pull-request-available
>
> Add javadoc for JDK 14 General-Availability Release
>  
> [API Javadoc|https://docs.oracle.com/en/java/javase/14/docs/api/index.html]



--
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-4038) Add javadoc for JDK 14 General-Availability Release

2020-03-18 Thread Jose (Jira)
Jose created NETBEANS-4038:
--

 Summary: Add javadoc for JDK 14 General-Availability Release
 Key: NETBEANS-4038
 URL: https://issues.apache.org/jira/browse/NETBEANS-4038
 Project: NetBeans
  Issue Type: Improvement
  Components: java - Javadoc
Affects Versions: 12.0, 11.3
Reporter: Jose
Assignee: Jose


Add javadoc for JDK 14 General-Availability Release

 

[API Javadoc|https://docs.oracle.com/en/java/javase/14/docs/api/index.html]



--
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-3942) Breakpoint background color in FlatLaF prevents reading text

2020-03-18 Thread Karl Tauber (Jira)


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

Karl Tauber commented on NETBEANS-3942:
---

There is an additional storage for some editor colors in directory 
'testuserdir/config/Editors/AnnotationTypes'. E.g. breakpoint background color 
is stored in 'testuserdir/config/Editors/AnnotationTypes/Breakpoint.xml' in 
''.

Invoking 'ColorModel.setCurrentProfile("new color profile")', as done in 
LafPanel when restarting with a new Laf and color profile, does not update the 
editor storage.

It is necessary to invoke 'ColorModel.setAnnotations("new color profile", 
annotations)' as well. This is also done in Options dialog when switching color 
profile.

> Breakpoint background color in FlatLaF prevents reading text
> 
>
> Key: NETBEANS-3942
> URL: https://issues.apache.org/jira/browse/NETBEANS-3942
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Jaroslav Tulach
>Assignee: Karl Tauber
>Priority: Minor
> Attachments: image-2020-03-17-18-16-27-097.png, nb-breakpoints.png
>
>
> I am trying NetBeans 11.3 and FlatLaF dark and I have a feeling that colors 
> of various debugging background lines were not adjusted. At least I have hard 
> time reading text under a breakpoint (too red) or current line (too green).



--
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-3042) can't see loggers (log4j2) created from apps deployed on Payara servers

2020-03-18 Thread jose luis romero (Jira)


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

jose luis romero commented on NETBEANS-3042:


could be this bug related to the impossibility to install the plugin Payara 
server
 !screenshot-1.png! 

> can't see loggers (log4j2) created from apps deployed on Payara servers
> ---
>
> Key: NETBEANS-3042
> URL: https://issues.apache.org/jira/browse/NETBEANS-3042
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Logger
>Affects Versions: 11.0, 11.1, 11.2, 11.3
> Environment: Windows 10, jdk 1.8, CentOS 7.x with AdoptOpenJDK 8 and 
> 11, Windows 10 with AdoptOpenJDK 8 and 11.
>Reporter: jose luis romero
>Priority: Major
> Attachments: screenshot-1.png
>
>
> I can't see the logs (log4j2) generated by my apps deployed in Payara, they 
> are always empty.
> Tried to make a clean re-installation (no cache, no import config) but didn't 
> work
> Initially, I thought that I messed up some config file so I made a post 
> [https://stackoverflow.com/questions/57679272/i-cant-see-logs-from-apps-on-payara-4-1-just-on-netbeans-console-tab|stackOverflow]
>  but no, it is a Netbeans issue introduced in 11.1 version + payara 5



--
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-3042) can't see loggers (log4j2) created from apps deployed on Payara servers

2020-03-18 Thread jose luis romero (Jira)


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

jose luis romero updated NETBEANS-3042:
---
Attachment: screenshot-1.png

> can't see loggers (log4j2) created from apps deployed on Payara servers
> ---
>
> Key: NETBEANS-3042
> URL: https://issues.apache.org/jira/browse/NETBEANS-3042
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Logger
>Affects Versions: 11.0, 11.1, 11.2, 11.3
> Environment: Windows 10, jdk 1.8, CentOS 7.x with AdoptOpenJDK 8 and 
> 11, Windows 10 with AdoptOpenJDK 8 and 11.
>Reporter: jose luis romero
>Priority: Major
> Attachments: screenshot-1.png
>
>
> I can't see the logs (log4j2) generated by my apps deployed in Payara, they 
> are always empty.
> Tried to make a clean re-installation (no cache, no import config) but didn't 
> work
> Initially, I thought that I messed up some config file so I made a post 
> [https://stackoverflow.com/questions/57679272/i-cant-see-logs-from-apps-on-payara-4-1-just-on-netbeans-console-tab|stackOverflow]
>  but no, it is a Netbeans issue introduced in 11.1 version + payara 5



--
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-4020) incorrect error on type conversion during list extraction

2020-03-18 Thread Don (Jira)


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

Don commented on NETBEANS-4020:
---

I got a notice that an editor update was available. I installed it. This 
problem has apparently been fixed. Close it. If it crops up again, I'll report 
it again.

> incorrect error on type conversion during list extraction
> -
>
> Key: NETBEANS-4020
> URL: https://issues.apache.org/jira/browse/NETBEANS-4020
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 11.3
> Environment: Mac OS Catalina, Netbeans 11.3
>Reporter: Don
>Priority: Trivial
>
> The following code has an error reported in the editor, but in fact is not an 
> error.
> Example:
> *{color:#00875a}abstract public class CmnStrc {{color}*
>     *{color:#00875a}public ArrayList refHsDilgs = new 
> ArrayList<> ();{color}*
> *{color:#00875a}}{color}*
> *{color:#00875a}public class DiagModel {{color}*
>    *{color:#00875a}HotspotDilg hsDilg = cmnStrc.tgtHsDilg;{color}*
>    *{color:#00875a}for ( int hsDilgNdx = 0 ; hsDilgNdx < 
> cmnStrc.refHsDilgs.size () ; hsDilgNdx++ ) {{color}*
>       *{color:#00875a}+hsDilg = cmnStrc.refHsDilgs.get ( hsDilgNdx );+{color}*
>    *{color:#00875a}}{color}*
> *{color:#00875a}}{color}*
> To remove the error in the error:
> {color:#de350b}      *+hsDilg = (HotspotDilg) cmnStrc.refHsDilgs.get ( 
> hsDilgNdx );+*{color}
> This wasn't/isn't really necessary, except to remove the editor error. The 
> code compiles fine without any error indication.
> This error cropped up today, after making a few other changes to unrelated 
> code. The error indication in the editor wasn't there earlier today when 
> making other unrelated changes. Other "incompatible type" errors are cropping 
> up - one at a time in separate files as I make changes to remove these 
> "non-errors". Indicates the IDE is highly unstable and may have other 
> problems not directly related to this error, like perhaps memory leaks or 
> accessing unrelated elements of the IDE (just a guess of course).



--
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-4020) incorrect error on type conversion during list extraction

2020-03-18 Thread Don (Jira)


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

Don updated NETBEANS-4020:
--
Priority: Trivial  (was: Major)

> incorrect error on type conversion during list extraction
> -
>
> Key: NETBEANS-4020
> URL: https://issues.apache.org/jira/browse/NETBEANS-4020
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 11.3
> Environment: Mac OS Catalina, Netbeans 11.3
>Reporter: Don
>Priority: Trivial
>
> The following code has an error reported in the editor, but in fact is not an 
> error.
> Example:
> *{color:#00875a}abstract public class CmnStrc {{color}*
>     *{color:#00875a}public ArrayList refHsDilgs = new 
> ArrayList<> ();{color}*
> *{color:#00875a}}{color}*
> *{color:#00875a}public class DiagModel {{color}*
>    *{color:#00875a}HotspotDilg hsDilg = cmnStrc.tgtHsDilg;{color}*
>    *{color:#00875a}for ( int hsDilgNdx = 0 ; hsDilgNdx < 
> cmnStrc.refHsDilgs.size () ; hsDilgNdx++ ) {{color}*
>       *{color:#00875a}+hsDilg = cmnStrc.refHsDilgs.get ( hsDilgNdx );+{color}*
>    *{color:#00875a}}{color}*
> *{color:#00875a}}{color}*
> To remove the error in the error:
> {color:#de350b}      *+hsDilg = (HotspotDilg) cmnStrc.refHsDilgs.get ( 
> hsDilgNdx );+*{color}
> This wasn't/isn't really necessary, except to remove the editor error. The 
> code compiles fine without any error indication.
> This error cropped up today, after making a few other changes to unrelated 
> code. The error indication in the editor wasn't there earlier today when 
> making other unrelated changes. Other "incompatible type" errors are cropping 
> up - one at a time in separate files as I make changes to remove these 
> "non-errors". Indicates the IDE is highly unstable and may have other 
> problems not directly related to this error, like perhaps memory leaks or 
> accessing unrelated elements of the IDE (just a guess of course).



--
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-4019) reformatting is not working right

2020-03-18 Thread Don (Jira)


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

Don commented on NETBEANS-4019:
---

I got a notice that an editor update was available. I installed it. This 
problem has apparently been fixed. Close it. If it crops up again, I'll report 
it again.

> reformatting is not working right
> -
>
> Key: NETBEANS-4019
> URL: https://issues.apache.org/jira/browse/NETBEANS-4019
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Editor
>Affects Versions: 11.3
> Environment: Mac OS Catalina, Netbeans 11.3
>Reporter: Don
>Priority: Major
>
> On Ctrl/Alt/Meta-F (key command to reformat the section or document) and on 
> save of file (when option to reformat on save is chosen) the reformatting is 
> either not taking place at all, or is only partially happening. For example, 
> some modified lines (whether "All languages" is set to reformat "All lines" 
> or "Only modified lines" or whether "Java" is set that way or set to use the 
> "All languages" setting) get spacing set but not indentation, or no 
> reformatting at all (even leaves the spacing untouched).
> This just started happening today. It was working OK and as expected 
> yesterday, and I have made no "overt" updates to the IDE - have not changed 
> preferences or updated version.
> When I did make changes to the reformatting settings and tried to close the 
> preferences dialog, it went away but then came back, then away again, and 
> then back again - while I just watched it happen.



--
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-4019) reformatting is not working right

2020-03-18 Thread Don (Jira)


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

Don updated NETBEANS-4019:
--
Priority: Trivial  (was: Major)

> reformatting is not working right
> -
>
> Key: NETBEANS-4019
> URL: https://issues.apache.org/jira/browse/NETBEANS-4019
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Editor
>Affects Versions: 11.3
> Environment: Mac OS Catalina, Netbeans 11.3
>Reporter: Don
>Priority: Trivial
>
> On Ctrl/Alt/Meta-F (key command to reformat the section or document) and on 
> save of file (when option to reformat on save is chosen) the reformatting is 
> either not taking place at all, or is only partially happening. For example, 
> some modified lines (whether "All languages" is set to reformat "All lines" 
> or "Only modified lines" or whether "Java" is set that way or set to use the 
> "All languages" setting) get spacing set but not indentation, or no 
> reformatting at all (even leaves the spacing untouched).
> This just started happening today. It was working OK and as expected 
> yesterday, and I have made no "overt" updates to the IDE - have not changed 
> preferences or updated version.
> When I did make changes to the reformatting settings and tried to close the 
> preferences dialog, it went away but then came back, then away again, and 
> then back again - while I just watched it happen.



--
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-4018) incompatible type error - types are compatible

2020-03-18 Thread Don (Jira)


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

Don commented on NETBEANS-4018:
---

I got a notice that an editor update was available. I installed it. This 
problem has apparently been fixed. Close it. If it crops up again, I'll report 
it again.

> incompatible type error - types are compatible
> --
>
> Key: NETBEANS-4018
> URL: https://issues.apache.org/jira/browse/NETBEANS-4018
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 11.3
> Environment: Mac OS Catalina, Netbeans 11.3
>Reporter: Don
>Priority: Trivial
>
> Error "incompatible types - Object cannot be converted to HsOwnr" when in 
> fact it can and should be.
> Example:
> {color:#00875a}*public class HsHndlr {*{color}
> {color:#00875a}*...*{color}
> {color:#00875a}   *public static ArrayList altrngHsOwnrs = 
> null;*{color}
> {color:#00875a}*...*{color}
> {color:#00875a}   *static class HsOwnr {*{color}
> {color:#00875a}*...*{color}
> {color:#00875a}   *}*{color}
> {color:#00875a}*}* {color}
> {color:#00875a}*public class AppCnvsMIA {*{color}
> {color:#00875a}*...*{color}
> {color:#00875a}   *+for ( HsHndlr.HsOwnr altrngOwnr : HsHndlr.altrngHsOwnrs ) 
> {+*{color}
> {color:#00875a}*...*{color}
> {color:#00875a}   *}*{color}
> {color:#00875a}*}*{color}
> The above give the error. But a compile (Clean and Build) is successful - no 
> errors in the compile and build. The error is removed when the following is 
> done.
> {color:#ff8b00}*public class AppCnvsMIA {*{color}
> {color:#ff8b00}*...*{color}
> {color:#00875a}*//   +for ( HsHndlr.HsOwnr altrngOwnr : HsHndlr.altrngHsOwnrs 
> ) {+*{color}
> {color:#ff8b00}   *ArrayList localOwnrsList = 
> HsHndlr.altrngHsOwnrs;*
>    *for ( HsHndlr.HsOwnr altrngOwnr :* *localOwnrsList* *) {*{color}
> {color:#ff8b00}*...*{color}
> {color:#ff8b00}   *}*{color}
> {color:#ff8b00}*}*{color}
>  This error just cropped up within the last week or so, and I have made no 
> upgrades to the Netbeans environment in months. I think some "automatic" 
> update may have occurred, but I don't know how that could be.
>  



--
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-4003) Loss of ALT key

2020-03-18 Thread Don (Jira)


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

Don updated NETBEANS-4003:
--
Priority: Critical  (was: Major)

> Loss of ALT key 
> 
>
> Key: NETBEANS-4003
> URL: https://issues.apache.org/jira/browse/NETBEANS-4003
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Editor
>Affects Versions: 11.3
> Environment: MacOS Catalina, Netbeans 11.3
>Reporter: Don
>Priority: Critical
>
> Use of the ALT (or Option) key on a Mac in the IDE happens when the right ALT 
> key is depressed. It appears to still be available to any debug session in 
> progress, but not to the editor. Sometimes, the touch pad is also not 
> recognized. It can be recovered by flipping to another application or 
> sometimes just another IDE window.



--
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-4018) incompatible type error - types are compatible

2020-03-18 Thread Don (Jira)


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

Don updated NETBEANS-4018:
--
Priority: Trivial  (was: Major)

> incompatible type error - types are compatible
> --
>
> Key: NETBEANS-4018
> URL: https://issues.apache.org/jira/browse/NETBEANS-4018
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 11.3
> Environment: Mac OS Catalina, Netbeans 11.3
>Reporter: Don
>Priority: Trivial
>
> Error "incompatible types - Object cannot be converted to HsOwnr" when in 
> fact it can and should be.
> Example:
> {color:#00875a}*public class HsHndlr {*{color}
> {color:#00875a}*...*{color}
> {color:#00875a}   *public static ArrayList altrngHsOwnrs = 
> null;*{color}
> {color:#00875a}*...*{color}
> {color:#00875a}   *static class HsOwnr {*{color}
> {color:#00875a}*...*{color}
> {color:#00875a}   *}*{color}
> {color:#00875a}*}* {color}
> {color:#00875a}*public class AppCnvsMIA {*{color}
> {color:#00875a}*...*{color}
> {color:#00875a}   *+for ( HsHndlr.HsOwnr altrngOwnr : HsHndlr.altrngHsOwnrs ) 
> {+*{color}
> {color:#00875a}*...*{color}
> {color:#00875a}   *}*{color}
> {color:#00875a}*}*{color}
> The above give the error. But a compile (Clean and Build) is successful - no 
> errors in the compile and build. The error is removed when the following is 
> done.
> {color:#ff8b00}*public class AppCnvsMIA {*{color}
> {color:#ff8b00}*...*{color}
> {color:#00875a}*//   +for ( HsHndlr.HsOwnr altrngOwnr : HsHndlr.altrngHsOwnrs 
> ) {+*{color}
> {color:#ff8b00}   *ArrayList localOwnrsList = 
> HsHndlr.altrngHsOwnrs;*
>    *for ( HsHndlr.HsOwnr altrngOwnr :* *localOwnrsList* *) {*{color}
> {color:#ff8b00}*...*{color}
> {color:#ff8b00}   *}*{color}
> {color:#ff8b00}*}*{color}
>  This error just cropped up within the last week or so, and I have made no 
> upgrades to the Netbeans environment in months. I think some "automatic" 
> update may have occurred, but I don't know how that could be.
>  



--
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-3977) Apply code changes and Compile on Save not working

2020-03-18 Thread Don (Jira)


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

Don updated NETBEANS-3977:
--
Priority: Critical  (was: Major)

> Apply code changes and Compile on Save not working
> --
>
> Key: NETBEANS-3977
> URL: https://issues.apache.org/jira/browse/NETBEANS-3977
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Debugger
>Affects Versions: 11.3
>Reporter: Don
>Priority: Critical
>
> With IDE 11.3, while debugging and making minor code changes, the changes are 
> not recognized, even though the "Compile on save" option of the project is 
> selected and the "Apply code changes" option for the "Java Debugger" is 
> selected. It doesn't even recognize that the line numbers are changed, 
> indicating that comment lines are executable, and some executable lines are 
> skipped over, after saving the changes. This may be similar to a couple of 
> other issues, but they said the options were disabled. Not so in my case - 
> the options can be toggled, but with no apparent effect. 



--
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-4010) IDE windows overlap incorrectly

2020-03-18 Thread Don (Jira)


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

Don updated NETBEANS-4010:
--
Priority: Minor  (was: Major)

> IDE windows overlap incorrectly
> ---
>
> Key: NETBEANS-4010
> URL: https://issues.apache.org/jira/browse/NETBEANS-4010
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Other
>Affects Versions: 11.3
> Environment: MacBook MacOS Catalina, Netbeans 11.3
>Reporter: Don
>Priority: Minor
> Attachments: Netbeans IDE windowing problem.png
>
>
> On a MacBook, at times, the "Output", main IDE window (where editors are 
> usually contained as tabs), "Variables", or other windows overlay each other 
> incorrectly. For example, a floating/detached "Output" window is overlaying 
> the main IDE window and will not let other windows overlay it. At other 
> times, clicking on the main window during a debug session results in the 
> "Call stack" or "Variable" window overlaying the main IDE window. Of course, 
> this is when these windows are in floating/detached or "undocked" (pick the 
> description that fits your understanding) states. If they are part of the 
> main IDE window that is presented when the IDE is started, they obviously 
> cannot overlap that window. I've included a screen capture to help understand 
> the problem. The "Variables" and "Output" windows show will come to top when 
> clicked. But the main IDE window under them cannot be displayed on top of 
> either of the others.



--
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-4036) Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar cannot be found using the classloader AntClassLoader[]"

2020-03-18 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4036:
-

Yes, pull requests and reviews of tutorials are always welcome and needed.

> Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar 
> cannot be found using the classloader AntClassLoader[]"
> -
>
> Key: NETBEANS-4036
> URL: https://issues.apache.org/jira/browse/NETBEANS-4036
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 11.3
> Environment: Mac OS Catalina 10.15.3 (current and latest) and 
> NetBeans:
> Product Version: Apache NetBeans IDE 11.3
> Java: 14; Java HotSpot(TM) 64-Bit Server VM 14+36-1461
> Runtime: Java(TM) SE Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb
>Reporter: David Gradwell
>Priority: Major
> Attachments: TestMacOSXPackagingWithAnt.zip, 
> TestNativePackagingOnWindows10.zip
>
>
> Steps to reproduce:
> 1.  Install fresh copy of 11.3 (also tested with 11.1 with same results)
> 2 Create new Project "Java with Ant", "Java Application".
> 3.  Create a single Java file such as:
> package testmacdmgwithant;
> public class TestMacDMGwithAnt {
> /**
>  * @param args the command line arguments
>  */
>  public static void main(String[] args) 
>  {
>  int a=1;
>  }
>  
> }
>  
> 4. Go clean and build and debug to prove it works OK.
> 5. Run the .jar in the dist folder to prove it works OK.
> 6. Go right click on the project and select "Package as DMG Image"
>  
> End of output is:  
> .../NetBeansProjects/TestMacDMGwithAnt/nbproject/build-native.xml:519: 
> typedef class com.sun.javafx.tools.ant.FXJar cannot be found
>  using the classloader AntClassLoader[]
> BUILD FAILED (total time: 0 seconds)
>  
> 7.  Note that this works fine on NetBeans 8.2 and also fails on 11.0..
>  



--
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-4036) Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar cannot be found using the classloader AntClassLoader[]"

2020-03-18 Thread David Gradwell (Jira)


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

David Gradwell commented on NETBEANS-4036:
--

Running NetBeans in the following way on Mac OSX and it works:

1.  Open terminal

2.  Go  "/Applications/NetBeans/Apache NetBeans 
11.3.app/Contents/Resources/NetBeans/netbeans/bin/netbeans" --jdkhome 
/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home

ensuring that jdkhome points to a valid jdk1.8.  This is essential.

 

Thank you Geertjan for giving me enough clues.  Should I propose an update to 
[https://netbeans.apache.org/kb/docs/java/native_pkg.html] ?

I assume that the same logic will apply to Windows 10 and will test shortly.

 

I'll also reply to 
[https://stackoverflow.com/questions/55976189/package-as-dmg-image-in-netbeans-9-11-jdk-11-returns-typedef-class-com-sun-j.]
 to help others.

 

> Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar 
> cannot be found using the classloader AntClassLoader[]"
> -
>
> Key: NETBEANS-4036
> URL: https://issues.apache.org/jira/browse/NETBEANS-4036
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 11.3
> Environment: Mac OS Catalina 10.15.3 (current and latest) and 
> NetBeans:
> Product Version: Apache NetBeans IDE 11.3
> Java: 14; Java HotSpot(TM) 64-Bit Server VM 14+36-1461
> Runtime: Java(TM) SE Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb
>Reporter: David Gradwell
>Priority: Major
> Attachments: TestMacOSXPackagingWithAnt.zip, 
> TestNativePackagingOnWindows10.zip
>
>
> Steps to reproduce:
> 1.  Install fresh copy of 11.3 (also tested with 11.1 with same results)
> 2 Create new Project "Java with Ant", "Java Application".
> 3.  Create a single Java file such as:
> package testmacdmgwithant;
> public class TestMacDMGwithAnt {
> /**
>  * @param args the command line arguments
>  */
>  public static void main(String[] args) 
>  {
>  int a=1;
>  }
>  
> }
>  
> 4. Go clean and build and debug to prove it works OK.
> 5. Run the .jar in the dist folder to prove it works OK.
> 6. Go right click on the project and select "Package as DMG Image"
>  
> End of output is:  
> .../NetBeansProjects/TestMacDMGwithAnt/nbproject/build-native.xml:519: 
> typedef class com.sun.javafx.tools.ant.FXJar cannot be found
>  using the classloader AntClassLoader[]
> BUILD FAILED (total time: 0 seconds)
>  
> 7.  Note that this works fine on NetBeans 8.2 and also fails on 11.0..
>  



--
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-4037) Debugger slow - taken profiler snapshots

2020-03-18 Thread matteodg (Jira)
matteodg created NETBEANS-4037:
--

 Summary: Debugger slow - taken profiler snapshots
 Key: NETBEANS-4037
 URL: https://issues.apache.org/jira/browse/NETBEANS-4037
 Project: NetBeans
  Issue Type: Bug
  Components: debugger - Java
Affects Versions: 11.2, 11.1, 8.2, 11.3
Reporter: matteodg
 Fix For: 12.0
 Attachments: 
org.netbeans.modules.debugger.jpda.ui.SourcePath.annotate.npss, 
org.netbeans.modules.debugger.jpda.ui.SourcePath.getURL.npss

We have a pretty big NetBeans Platform Application (~180 modules and 5 suites) 
and when the debugger reaches the first breakpoint it got stuck: the tabs 
Debugging, Variables, Breakpoints, etc. are all with a "Please wait..." node 
and with the NetBeans sampler I took a few snapshots highlighting it is 
spending a lot of time on calls like:
 * {{org.netbeans.modules.debugger.jpda.ui.SourcePath.getURL()}}
 * {{org.netbeans.modules.debugger.jpda.ui.SourcePath.annotate()}}

which at the end boil down to a lot of calls like:
 * java.util.concurrent.CopyOnWriteArrayList.remove()
 * java.io.File.isFile()

Attached the snapshots.

Then if I press Continue the debugger remain stuck: now Pause and Continue 
buttons in the toolbar are disabled...

I kept close and restarting NetBeans but no luck... I remember got this 
behavior even with NB 8.2, sometimes though it goes through and I'm able to 
debug, but very rarely!

 



--
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



[netbeans] branch master updated: [NETBEANS-3428] Update FlatLaf from 0.26 to 0.28

2020-03-18 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new 72d7606  [NETBEANS-3428] Update FlatLaf from 0.26 to 0.28
 new 1de7b63  Merge pull request #2024 from DevCharly/flatlaf-0.28
72d7606 is described below

commit 72d7606eac705f0ab6bd562322490e238ce29a20
Author: Karl Tauber 
AuthorDate: Mon Mar 16 23:40:03 2020 +0100

[NETBEANS-3428] Update FlatLaf from 0.26 to 0.28
---
 platform/libs.flatlaf/external/binaries-list  | 2 +-
 .../external/{flatlaf-0.26-license.txt => flatlaf-0.28-license.txt}   | 4 ++--
 platform/libs.flatlaf/nbproject/project.properties| 2 +-
 platform/libs.flatlaf/nbproject/project.xml   | 4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/platform/libs.flatlaf/external/binaries-list 
b/platform/libs.flatlaf/external/binaries-list
index 8cb59cc..1085ea7 100644
--- a/platform/libs.flatlaf/external/binaries-list
+++ b/platform/libs.flatlaf/external/binaries-list
@@ -15,4 +15,4 @@
 # specific language governing permissions and limitations
 # under the License.
 
-2EF2AB1FF80098D83488A715AC708D60A2986A9B com.formdev:flatlaf:0.26
+0D243D93E84900CF69F6B7854E32288E0E45BFFD com.formdev:flatlaf:0.28
diff --git a/platform/libs.flatlaf/external/flatlaf-0.26-license.txt 
b/platform/libs.flatlaf/external/flatlaf-0.28-license.txt
similarity index 99%
rename from platform/libs.flatlaf/external/flatlaf-0.26-license.txt
rename to platform/libs.flatlaf/external/flatlaf-0.28-license.txt
index b1b4cd7..9609961 100644
--- a/platform/libs.flatlaf/external/flatlaf-0.26-license.txt
+++ b/platform/libs.flatlaf/external/flatlaf-0.28-license.txt
@@ -1,7 +1,7 @@
 Name: FlatLaf Look and Feel
 Description: FlatLaf Look and Feel
-Version: 0.26
-Files: flatlaf-0.26.jar
+Version: 0.28
+Files: flatlaf-0.28.jar
 License: Apache-2.0
 Origin: FormDev Software GmbH.
 URL: https://www.formdev.com/flatlaf/
diff --git a/platform/libs.flatlaf/nbproject/project.properties 
b/platform/libs.flatlaf/nbproject/project.properties
index eaf091e..f267ff4 100644
--- a/platform/libs.flatlaf/nbproject/project.properties
+++ b/platform/libs.flatlaf/nbproject/project.properties
@@ -20,4 +20,4 @@ javac.compilerargs=-Xlint:unchecked
 javac.source=1.8
 nbm.target.cluster=platform
 
-release.external/flatlaf-0.26.jar=modules/ext/flatlaf-0.26.jar
+release.external/flatlaf-0.28.jar=modules/ext/flatlaf-0.28.jar
diff --git a/platform/libs.flatlaf/nbproject/project.xml 
b/platform/libs.flatlaf/nbproject/project.xml
index ca95549..c40a125 100644
--- a/platform/libs.flatlaf/nbproject/project.xml
+++ b/platform/libs.flatlaf/nbproject/project.xml
@@ -30,8 +30,8 @@
 com.formdev.flatlaf.util
 
 
-
ext/flatlaf-0.26.jar
-external/flatlaf-0.26.jar
+
ext/flatlaf-0.28.jar
+external/flatlaf-0.28.jar
 
 
 


-
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-4028) Can't create web application maven project

2020-03-18 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated NETBEANS-4028:
-
Labels: pull-request-available  (was: )

> Can't create web application maven project
> --
>
> Key: NETBEANS-4028
> URL: https://issues.apache.org/jira/browse/NETBEANS-4028
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project
>Affects Versions: 12.0
> Environment: Product Version: Apache NetBeans IDE 12.0-beta1
> Java: 11.0.6; OpenJDK 64-Bit Server VM 11.0.6+10
> Runtime: OpenJDK Runtime Environment 11.0.6+10
> OS: Windows 10
>Reporter: Vano Beridze
>Priority: Critical
>  Labels: pull-request-available
>
>  
> When I try to create maven web application project it throws the exception
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.maven.execute.MavenCommandLineExecutor.isEventSpyCompatible(MavenCommandLineExecutor.java:338)
>  at 
> org.netbeans.modules.maven.execute.MavenCommandLineExecutor.run(MavenCommandLineExecutor.java:246)
> [catch] at 
> org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:128)



--
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



[netbeans] branch master updated (3e4fe38 -> a92c1ab)

2020-03-18 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


from 3e4fe38  Hide the new SVG Loader module from the 'Plugins' list in NB 
platform applications.
 add ff8f8c5  NETBEANS-3738 better check of null case
 add a92c1ab  NETBEANS-4028 NETBEANS-3738 better check of null case

No new revisions were added by this update.

Summary of changes:
 .../modules/maven/execute/MavenCommandLineExecutor.java| 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)


-
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-4036) Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar cannot be found using the classloader AntClassLoader[]"

2020-03-18 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4036:
-

It's not about adding JDK 8 as a platform for the project, by the way, but 
about running NetBeans itself on JDK 8, make that change in etc/netbeans.conf 
in your installation directory.

> Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar 
> cannot be found using the classloader AntClassLoader[]"
> -
>
> Key: NETBEANS-4036
> URL: https://issues.apache.org/jira/browse/NETBEANS-4036
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 11.3
> Environment: Mac OS Catalina 10.15.3 (current and latest) and 
> NetBeans:
> Product Version: Apache NetBeans IDE 11.3
> Java: 14; Java HotSpot(TM) 64-Bit Server VM 14+36-1461
> Runtime: Java(TM) SE Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb
>Reporter: David Gradwell
>Priority: Major
> Attachments: TestMacOSXPackagingWithAnt.zip, 
> TestNativePackagingOnWindows10.zip
>
>
> Steps to reproduce:
> 1.  Install fresh copy of 11.3 (also tested with 11.1 with same results)
> 2 Create new Project "Java with Ant", "Java Application".
> 3.  Create a single Java file such as:
> package testmacdmgwithant;
> public class TestMacDMGwithAnt {
> /**
>  * @param args the command line arguments
>  */
>  public static void main(String[] args) 
>  {
>  int a=1;
>  }
>  
> }
>  
> 4. Go clean and build and debug to prove it works OK.
> 5. Run the .jar in the dist folder to prove it works OK.
> 6. Go right click on the project and select "Package as DMG Image"
>  
> End of output is:  
> .../NetBeansProjects/TestMacDMGwithAnt/nbproject/build-native.xml:519: 
> typedef class com.sun.javafx.tools.ant.FXJar cannot be found
>  using the classloader AntClassLoader[]
> BUILD FAILED (total time: 0 seconds)
>  
> 7.  Note that this works fine on NetBeans 8.2 and also fails on 11.0..
>  



--
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-4036) Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar cannot be found using the classloader AntClassLoader[]"

2020-03-18 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4036:
-

Best to stop uploading projects.

Possibly there are other things going on here, maybe best of all to join the 
users mailing list and start a new thread to discuss your scenario there:

http://netbeans.apache.org/community/mailing-lists.html

> Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar 
> cannot be found using the classloader AntClassLoader[]"
> -
>
> Key: NETBEANS-4036
> URL: https://issues.apache.org/jira/browse/NETBEANS-4036
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 11.3
> Environment: Mac OS Catalina 10.15.3 (current and latest) and 
> NetBeans:
> Product Version: Apache NetBeans IDE 11.3
> Java: 14; Java HotSpot(TM) 64-Bit Server VM 14+36-1461
> Runtime: Java(TM) SE Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb
>Reporter: David Gradwell
>Priority: Major
> Attachments: TestMacOSXPackagingWithAnt.zip, 
> TestNativePackagingOnWindows10.zip
>
>
> Steps to reproduce:
> 1.  Install fresh copy of 11.3 (also tested with 11.1 with same results)
> 2 Create new Project "Java with Ant", "Java Application".
> 3.  Create a single Java file such as:
> package testmacdmgwithant;
> public class TestMacDMGwithAnt {
> /**
>  * @param args the command line arguments
>  */
>  public static void main(String[] args) 
>  {
>  int a=1;
>  }
>  
> }
>  
> 4. Go clean and build and debug to prove it works OK.
> 5. Run the .jar in the dist folder to prove it works OK.
> 6. Go right click on the project and select "Package as DMG Image"
>  
> End of output is:  
> .../NetBeansProjects/TestMacDMGwithAnt/nbproject/build-native.xml:519: 
> typedef class com.sun.javafx.tools.ant.FXJar cannot be found
>  using the classloader AntClassLoader[]
> BUILD FAILED (total time: 0 seconds)
>  
> 7.  Note that this works fine on NetBeans 8.2 and also fails on 11.0..
>  



--
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-4036) Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar cannot be found using the classloader AntClassLoader[]"

2020-03-18 Thread David Gradwell (Jira)


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

David Gradwell updated NETBEANS-4036:
-
Attachment: TestNativePackagingOnWindows10.zip

> Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar 
> cannot be found using the classloader AntClassLoader[]"
> -
>
> Key: NETBEANS-4036
> URL: https://issues.apache.org/jira/browse/NETBEANS-4036
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 11.3
> Environment: Mac OS Catalina 10.15.3 (current and latest) and 
> NetBeans:
> Product Version: Apache NetBeans IDE 11.3
> Java: 14; Java HotSpot(TM) 64-Bit Server VM 14+36-1461
> Runtime: Java(TM) SE Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb
>Reporter: David Gradwell
>Priority: Major
> Attachments: TestMacOSXPackagingWithAnt.zip, 
> TestNativePackagingOnWindows10.zip
>
>
> Steps to reproduce:
> 1.  Install fresh copy of 11.3 (also tested with 11.1 with same results)
> 2 Create new Project "Java with Ant", "Java Application".
> 3.  Create a single Java file such as:
> package testmacdmgwithant;
> public class TestMacDMGwithAnt {
> /**
>  * @param args the command line arguments
>  */
>  public static void main(String[] args) 
>  {
>  int a=1;
>  }
>  
> }
>  
> 4. Go clean and build and debug to prove it works OK.
> 5. Run the .jar in the dist folder to prove it works OK.
> 6. Go right click on the project and select "Package as DMG Image"
>  
> End of output is:  
> .../NetBeansProjects/TestMacDMGwithAnt/nbproject/build-native.xml:519: 
> typedef class com.sun.javafx.tools.ant.FXJar cannot be found
>  using the classloader AntClassLoader[]
> BUILD FAILED (total time: 0 seconds)
>  
> 7.  Note that this works fine on NetBeans 8.2 and also fails on 11.0..
>  



--
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-4036) Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar cannot be found using the classloader AntClassLoader[]"

2020-03-18 Thread David Gradwell (Jira)


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

David Gradwell commented on NETBEANS-4036:
--

Also noted 
[https://stackoverflow.com/questions/55976189/package-as-dmg-image-in-netbeans-9-11-jdk-11-returns-typedef-class-com-sun-j.]

 

Also duplicated the problem with Apache NetBeans 11.3 running on Windows 10 
after following instructions at 
[https://netbeans.apache.org/kb/docs/java/native_pkg.html] to install Inno 
Setup.

 

Noted Geertjan's comment thank you.  Re-installed jdk-8u241 and added that as a 
platform for the project.  Still getting the same problem.    Noted that the 
output contains

 

Detected JavaFX Ant API version 1.0
Result: 1

Will upload this project as well.

 

> Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar 
> cannot be found using the classloader AntClassLoader[]"
> -
>
> Key: NETBEANS-4036
> URL: https://issues.apache.org/jira/browse/NETBEANS-4036
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 11.3
> Environment: Mac OS Catalina 10.15.3 (current and latest) and 
> NetBeans:
> Product Version: Apache NetBeans IDE 11.3
> Java: 14; Java HotSpot(TM) 64-Bit Server VM 14+36-1461
> Runtime: Java(TM) SE Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb
>Reporter: David Gradwell
>Priority: Major
> Attachments: TestMacOSXPackagingWithAnt.zip
>
>
> Steps to reproduce:
> 1.  Install fresh copy of 11.3 (also tested with 11.1 with same results)
> 2 Create new Project "Java with Ant", "Java Application".
> 3.  Create a single Java file such as:
> package testmacdmgwithant;
> public class TestMacDMGwithAnt {
> /**
>  * @param args the command line arguments
>  */
>  public static void main(String[] args) 
>  {
>  int a=1;
>  }
>  
> }
>  
> 4. Go clean and build and debug to prove it works OK.
> 5. Run the .jar in the dist folder to prove it works OK.
> 6. Go right click on the project and select "Package as DMG Image"
>  
> End of output is:  
> .../NetBeansProjects/TestMacDMGwithAnt/nbproject/build-native.xml:519: 
> typedef class com.sun.javafx.tools.ant.FXJar cannot be found
>  using the classloader AntClassLoader[]
> BUILD FAILED (total time: 0 seconds)
>  
> 7.  Note that this works fine on NetBeans 8.2 and also fails on 11.0..
>  



--
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] [Comment Edited] (NETBEANS-3942) Breakpoint background color in FlatLaF prevents reading text

2020-03-18 Thread Alessandro Falappa (Jira)


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

Alessandro Falappa edited comment on NETBEANS-3942 at 3/18/20, 1:28 PM:


I can confirm [~DevCharly] investigation.

For reference here are the colors of enabled/disabled breakpoint lines and 
execution point line as defined in FlatLaf Dark color profile:

!nb-breakpoints.png!


was (Author: alexfalappa):
I can confirm [~DevCharly] investigation.

For reference here is the right color of enabled/disabled breakpoint lines and 
execution point line:

!nb-breakpoints.png!

> Breakpoint background color in FlatLaF prevents reading text
> 
>
> Key: NETBEANS-3942
> URL: https://issues.apache.org/jira/browse/NETBEANS-3942
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Jaroslav Tulach
>Assignee: Karl Tauber
>Priority: Minor
> Attachments: image-2020-03-17-18-16-27-097.png, nb-breakpoints.png
>
>
> I am trying NetBeans 11.3 and FlatLaF dark and I have a feeling that colors 
> of various debugging background lines were not adjusted. At least I have hard 
> time reading text under a breakpoint (too red) or current line (too green).



--
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-3942) Breakpoint background color in FlatLaF prevents reading text

2020-03-18 Thread Alessandro Falappa (Jira)


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

Alessandro Falappa updated NETBEANS-3942:
-
Attachment: (was: nb-breakpoints.png)

> Breakpoint background color in FlatLaF prevents reading text
> 
>
> Key: NETBEANS-3942
> URL: https://issues.apache.org/jira/browse/NETBEANS-3942
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Jaroslav Tulach
>Assignee: Karl Tauber
>Priority: Minor
> Attachments: image-2020-03-17-18-16-27-097.png, nb-breakpoints.png
>
>
> I am trying NetBeans 11.3 and FlatLaF dark and I have a feeling that colors 
> of various debugging background lines were not adjusted. At least I have hard 
> time reading text under a breakpoint (too red) or current line (too green).



--
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-3942) Breakpoint background color in FlatLaF prevents reading text

2020-03-18 Thread Alessandro Falappa (Jira)


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

Alessandro Falappa updated NETBEANS-3942:
-
Attachment: nb-breakpoints.png

> Breakpoint background color in FlatLaF prevents reading text
> 
>
> Key: NETBEANS-3942
> URL: https://issues.apache.org/jira/browse/NETBEANS-3942
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Jaroslav Tulach
>Assignee: Karl Tauber
>Priority: Minor
> Attachments: image-2020-03-17-18-16-27-097.png, nb-breakpoints.png
>
>
> I am trying NetBeans 11.3 and FlatLaF dark and I have a feeling that colors 
> of various debugging background lines were not adjusted. At least I have hard 
> time reading text under a breakpoint (too red) or current line (too green).



--
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-3942) Breakpoint background color in FlatLaF prevents reading text

2020-03-18 Thread Alessandro Falappa (Jira)


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

Alessandro Falappa updated NETBEANS-3942:
-
Attachment: nb-breakpoints.png

> Breakpoint background color in FlatLaF prevents reading text
> 
>
> Key: NETBEANS-3942
> URL: https://issues.apache.org/jira/browse/NETBEANS-3942
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Jaroslav Tulach
>Assignee: Karl Tauber
>Priority: Minor
> Attachments: image-2020-03-17-18-16-27-097.png, nb-breakpoints.png
>
>
> I am trying NetBeans 11.3 and FlatLaF dark and I have a feeling that colors 
> of various debugging background lines were not adjusted. At least I have hard 
> time reading text under a breakpoint (too red) or current line (too green).



--
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-3942) Breakpoint background color in FlatLaF prevents reading text

2020-03-18 Thread Alessandro Falappa (Jira)


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

Alessandro Falappa commented on NETBEANS-3942:
--

I can confirm [~DevCharly] investigation.

For reference here is the right color of enabled/disabled breakpoint lines and 
execution point line:

!nb-breakpoints.png!

> Breakpoint background color in FlatLaF prevents reading text
> 
>
> Key: NETBEANS-3942
> URL: https://issues.apache.org/jira/browse/NETBEANS-3942
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Jaroslav Tulach
>Assignee: Karl Tauber
>Priority: Minor
> Attachments: image-2020-03-17-18-16-27-097.png, nb-breakpoints.png
>
>
> I am trying NetBeans 11.3 and FlatLaF dark and I have a feeling that colors 
> of various debugging background lines were not adjusted. At least I have hard 
> time reading text under a breakpoint (too red) or current line (too green).



--
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-3943) Ctrl+PgUp/PgDown doesn't switch tabs in FlatLaf

2020-03-18 Thread Alessandro Falappa (Jira)


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

Alessandro Falappa resolved NETBEANS-3943.
--
Resolution: Duplicate

> Ctrl+PgUp/PgDown doesn't switch tabs in FlatLaf
> ---
>
> Key: NETBEANS-3943
> URL: https://issues.apache.org/jira/browse/NETBEANS-3943
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Jaroslav Tulach
>Assignee: Karl Tauber
>Priority: Major
>
> When in editor I am used to Ctrl+PgUp and Ctrl+PgDn to move to next and 
> previous tabs. This is not working with FlatLaF (dark).



--
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-4036) Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar cannot be found using the classloader AntClassLoader[]"

2020-03-18 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4036:
-

Right, when you’re not running on a JDK that includes JavaFX, JavaFX-related 
functionality will not work. Use JDK 8, for example.

> Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar 
> cannot be found using the classloader AntClassLoader[]"
> -
>
> Key: NETBEANS-4036
> URL: https://issues.apache.org/jira/browse/NETBEANS-4036
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 11.3
> Environment: Mac OS Catalina 10.15.3 (current and latest) and 
> NetBeans:
> Product Version: Apache NetBeans IDE 11.3
> Java: 14; Java HotSpot(TM) 64-Bit Server VM 14+36-1461
> Runtime: Java(TM) SE Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb
>Reporter: David Gradwell
>Priority: Major
> Attachments: TestMacOSXPackagingWithAnt.zip
>
>
> Steps to reproduce:
> 1.  Install fresh copy of 11.3 (also tested with 11.1 with same results)
> 2 Create new Project "Java with Ant", "Java Application".
> 3.  Create a single Java file such as:
> package testmacdmgwithant;
> public class TestMacDMGwithAnt {
> /**
>  * @param args the command line arguments
>  */
>  public static void main(String[] args) 
>  {
>  int a=1;
>  }
>  
> }
>  
> 4. Go clean and build and debug to prove it works OK.
> 5. Run the .jar in the dist folder to prove it works OK.
> 6. Go right click on the project and select "Package as DMG Image"
>  
> End of output is:  
> .../NetBeansProjects/TestMacDMGwithAnt/nbproject/build-native.xml:519: 
> typedef class com.sun.javafx.tools.ant.FXJar cannot be found
>  using the classloader AntClassLoader[]
> BUILD FAILED (total time: 0 seconds)
>  
> 7.  Note that this works fine on NetBeans 8.2 and also fails on 11.0..
>  



--
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-4036) Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar cannot be found using the classloader AntClassLoader[]"

2020-03-18 Thread David Gradwell (Jira)


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

David Gradwell commented on NETBEANS-4036:
--

Project including source file attached.

> Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar 
> cannot be found using the classloader AntClassLoader[]"
> -
>
> Key: NETBEANS-4036
> URL: https://issues.apache.org/jira/browse/NETBEANS-4036
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 11.3
> Environment: Mac OS Catalina 10.15.3 (current and latest) and 
> NetBeans:
> Product Version: Apache NetBeans IDE 11.3
> Java: 14; Java HotSpot(TM) 64-Bit Server VM 14+36-1461
> Runtime: Java(TM) SE Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb
>Reporter: David Gradwell
>Priority: Major
> Attachments: TestMacOSXPackagingWithAnt.zip
>
>
> Steps to reproduce:
> 1.  Install fresh copy of 11.3 (also tested with 11.1 with same results)
> 2 Create new Project "Java with Ant", "Java Application".
> 3.  Create a single Java file such as:
> package testmacdmgwithant;
> public class TestMacDMGwithAnt {
> /**
>  * @param args the command line arguments
>  */
>  public static void main(String[] args) 
>  {
>  int a=1;
>  }
>  
> }
>  
> 4. Go clean and build and debug to prove it works OK.
> 5. Run the .jar in the dist folder to prove it works OK.
> 6. Go right click on the project and select "Package as DMG Image"
>  
> End of output is:  
> .../NetBeansProjects/TestMacDMGwithAnt/nbproject/build-native.xml:519: 
> typedef class com.sun.javafx.tools.ant.FXJar cannot be found
>  using the classloader AntClassLoader[]
> BUILD FAILED (total time: 0 seconds)
>  
> 7.  Note that this works fine on NetBeans 8.2 and also fails on 11.0..
>  



--
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-4036) Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar cannot be found using the classloader AntClassLoader[]"

2020-03-18 Thread David Gradwell (Jira)
David Gradwell created NETBEANS-4036:


 Summary: Package as DMG Image fails with "typedef class 
com.sun.javafx.tools.ant.FXJar cannot be found using the classloader 
AntClassLoader[]"
 Key: NETBEANS-4036
 URL: https://issues.apache.org/jira/browse/NETBEANS-4036
 Project: NetBeans
  Issue Type: Bug
  Components: core
Affects Versions: 11.3
 Environment: Mac OS Catalina 10.15.3 (current and latest) and NetBeans:
Product Version: Apache NetBeans IDE 11.3
Java: 14; Java HotSpot(TM) 64-Bit Server VM 14+36-1461
Runtime: Java(TM) SE Runtime Environment 14+36-1461
System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb
Reporter: David Gradwell
 Attachments: TestMacOSXPackagingWithAnt.zip

Steps to reproduce:

1.  Install fresh copy of 11.3 (also tested with 11.1 with same results)

2 Create new Project "Java with Ant", "Java Application".

3.  Create a single Java file such as:


package testmacdmgwithant;


public class TestMacDMGwithAnt {

/**
 * @param args the command line arguments
 */
 public static void main(String[] args) 
 {
 int a=1;
 }
 
}

 

4. Go clean and build and debug to prove it works OK.

5. Run the .jar in the dist folder to prove it works OK.

6. Go right click on the project and select "Package as DMG Image"

 

End of output is:  
.../NetBeansProjects/TestMacDMGwithAnt/nbproject/build-native.xml:519: typedef 
class com.sun.javafx.tools.ant.FXJar cannot be found
 using the classloader AntClassLoader[]
BUILD FAILED (total time: 0 seconds)

 

7.  Note that this works fine on NetBeans 8.2 and also fails on 11.0..

 



--
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-4036) Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar cannot be found using the classloader AntClassLoader[]"

2020-03-18 Thread David Gradwell (Jira)


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

David Gradwell updated NETBEANS-4036:
-
Attachment: TestMacOSXPackagingWithAnt.zip

> Package as DMG Image fails with "typedef class com.sun.javafx.tools.ant.FXJar 
> cannot be found using the classloader AntClassLoader[]"
> -
>
> Key: NETBEANS-4036
> URL: https://issues.apache.org/jira/browse/NETBEANS-4036
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 11.3
> Environment: Mac OS Catalina 10.15.3 (current and latest) and 
> NetBeans:
> Product Version: Apache NetBeans IDE 11.3
> Java: 14; Java HotSpot(TM) 64-Bit Server VM 14+36-1461
> Runtime: Java(TM) SE Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb
>Reporter: David Gradwell
>Priority: Major
> Attachments: TestMacOSXPackagingWithAnt.zip
>
>
> Steps to reproduce:
> 1.  Install fresh copy of 11.3 (also tested with 11.1 with same results)
> 2 Create new Project "Java with Ant", "Java Application".
> 3.  Create a single Java file such as:
> package testmacdmgwithant;
> public class TestMacDMGwithAnt {
> /**
>  * @param args the command line arguments
>  */
>  public static void main(String[] args) 
>  {
>  int a=1;
>  }
>  
> }
>  
> 4. Go clean and build and debug to prove it works OK.
> 5. Run the .jar in the dist folder to prove it works OK.
> 6. Go right click on the project and select "Package as DMG Image"
>  
> End of output is:  
> .../NetBeansProjects/TestMacDMGwithAnt/nbproject/build-native.xml:519: 
> typedef class com.sun.javafx.tools.ant.FXJar cannot be found
>  using the classloader AntClassLoader[]
> BUILD FAILED (total time: 0 seconds)
>  
> 7.  Note that this works fine on NetBeans 8.2 and also fails on 11.0..
>  



--
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-4035) The problem still persist

2020-03-18 Thread luca campagnaro (Jira)
luca campagnaro created NETBEANS-4035:
-

 Summary: The problem still persist
 Key: NETBEANS-4035
 URL: https://issues.apache.org/jira/browse/NETBEANS-4035
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.3
Reporter: luca campagnaro
 Fix For: 11.3






--
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-4034) --enable-preview + VM Options problem on MacOS

2020-03-18 Thread Vedran (Jira)


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

Vedran updated NETBEANS-4034:
-
Priority: Blocker  (was: Minor)

> --enable-preview + VM Options problem on MacOS
> --
>
> Key: NETBEANS-4034
> URL: https://issues.apache.org/jira/browse/NETBEANS-4034
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler, java - Editor
>Affects Versions: 11.3
> Environment: Product Version: Apache NetBeans IDE 11.3
> Java: 14; OpenJDK 64-Bit Server VM 14+36-1461
> Runtime: OpenJDK Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb)
>Reporter: Vedran
>Priority: Blocker
>
> Whatever i do i can't enable preview features in NetBeans. I also see hint 
> 'Text block may not be supported'. I uninstalled nb-javac and i am running 
> NetBeans on JDK 14. I also cleared cache. I can see that --enable-preview 
> flag is set in pom.xml and in VM Options.
> In terminal, java --enable-preview --source 14 A.java executes as expected.
> What i also noticed in previous versions of NetBeans is that VM Options 
> configured under Run are not passed to Maven.
> What am i missing?



--
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-4034) --enable-preview + VM Options problem on MacOS

2020-03-18 Thread Vedran (Jira)


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

Vedran updated NETBEANS-4034:
-
Description: 
Whatever i do i can't enable preview features in NetBeans. I also see hint 
'Text block may not be supported'. I uninstalled nb-javac and i am running 
NetBeans on JDK 14. I also cleared cache. I can see that --enable-preview flag 
is set in pom.xml and in VM Options.

In terminal, java --enable-preview --source 14 A.java executes as expected.

What i also noticed in previous versions of NetBeans is that VM Options 
configured under Run are not passed to Maven.

What am i missing?

  was:
Whatever i do i can't enable preview features in NetBeans. I also see hint 
'Text block may not be supported'. I uninstalled nb-javac and i am running 
NetBeans on JDK 14. I also cleared cache. I can see that --enable-preview flag 
is set in pom.xml and in VM Options.

In terminal, java --enable-preview --source 14 A.java executes as expected.

What i also noticed in previous versions of NetBeans is that VM Options 
configured under Run are not passed to Maven.


> --enable-preview + VM Options problem on MacOS
> --
>
> Key: NETBEANS-4034
> URL: https://issues.apache.org/jira/browse/NETBEANS-4034
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler, java - Editor
>Affects Versions: 11.3
> Environment: Product Version: Apache NetBeans IDE 11.3
> Java: 14; OpenJDK 64-Bit Server VM 14+36-1461
> Runtime: OpenJDK Runtime Environment 14+36-1461
> System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb)
>Reporter: Vedran
>Priority: Minor
>
> Whatever i do i can't enable preview features in NetBeans. I also see hint 
> 'Text block may not be supported'. I uninstalled nb-javac and i am running 
> NetBeans on JDK 14. I also cleared cache. I can see that --enable-preview 
> flag is set in pom.xml and in VM Options.
> In terminal, java --enable-preview --source 14 A.java executes as expected.
> What i also noticed in previous versions of NetBeans is that VM Options 
> configured under Run are not passed to Maven.
> What am i missing?



--
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-4034) --enable-preview + VM Options problem on MacOS

2020-03-18 Thread Vedran (Jira)
Vedran created NETBEANS-4034:


 Summary: --enable-preview + VM Options problem on MacOS
 Key: NETBEANS-4034
 URL: https://issues.apache.org/jira/browse/NETBEANS-4034
 Project: NetBeans
  Issue Type: Bug
  Components: java - Compiler, java - Editor
Affects Versions: 11.3
 Environment: Product Version: Apache NetBeans IDE 11.3
Java: 14; OpenJDK 64-Bit Server VM 14+36-1461
Runtime: OpenJDK Runtime Environment 14+36-1461
System: Mac OS X version 10.15.3 running on x86_64; UTF-8; en_GB (nb)

Reporter: Vedran


Whatever i do i can't enable preview features in NetBeans. I also see hint 
'Text block may not be supported'. I uninstalled nb-javac and i am running 
NetBeans on JDK 14. I also cleared cache. I can see that --enable-preview flag 
is set in pom.xml and in VM Options.

In terminal, java --enable-preview --source 14 A.java executes as expected.

What i also noticed in previous versions of NetBeans is that VM Options 
configured under Run are not passed to Maven.



--
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-4032) When creating a new maven project from archetype i get an NPE from the MavenCommandLineExecutor

2020-03-18 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4032:
-

Yes, this is known, and fixed for beta 2. 

> When creating a new maven project from archetype i get an NPE from the 
> MavenCommandLineExecutor
> ---
>
> Key: NETBEANS-4032
> URL: https://issues.apache.org/jira/browse/NETBEANS-4032
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 12.0
> Environment: Product Version: Apache NetBeans IDE 12.0-beta1
> Java: 11; Java HotSpot(TM) 64-Bit Server VM 11+28
> Runtime: Java(TM) SE Runtime Environment 11+28
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
> User directory: 
> C:\Users\luca.mambretti.BZDOMAIN\AppData\Roaming\NetBeans\12.0-beta1
> Cache directory: 
> C:\Users\luca.mambretti.BZDOMAIN\AppData\Local\NetBeans\Cache\12.0-beta1
>Reporter: Luca Mambretti
>Priority: Major
> Fix For: 12.0
>
>
> During NetCat 12 Maven tests using case "New Archetype Wizard", i got the 
> following error while using the maven-archetype-quickstart
>  
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.maven.execute.MavenCommandLineExecutor.isEventSpyCompatible(MavenCommandLineExecutor.java:338)
>  at 
> org.netbeans.modules.maven.execute.MavenCommandLineExecutor.run(MavenCommandLineExecutor.java:246)
>  [catch] at 
> org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:128)
>  
> Also the create project taskbar notification stays there forever even thou 
> the project creation actually failed, trying to cancel it does nothing and 
> creating a new project just creates a new taskbar notification.



--
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-4028) Can't create web application maven project

2020-03-18 Thread Luca Mambretti (Jira)


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

Luca Mambretti commented on NETBEANS-4028:
--

As an added note in my test I tried creating a maven project from archetype 
using the maven-archetype-quickstart that should be one of the most basic 
archetypes with no dependency to EE or web projects

> Can't create web application maven project
> --
>
> Key: NETBEANS-4028
> URL: https://issues.apache.org/jira/browse/NETBEANS-4028
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project
>Affects Versions: 12.0
> Environment: Product Version: Apache NetBeans IDE 12.0-beta1
> Java: 11.0.6; OpenJDK 64-Bit Server VM 11.0.6+10
> Runtime: OpenJDK Runtime Environment 11.0.6+10
> OS: Windows 10
>Reporter: Vano Beridze
>Priority: Critical
>
>  
> When I try to create maven web application project it throws the exception
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.maven.execute.MavenCommandLineExecutor.isEventSpyCompatible(MavenCommandLineExecutor.java:338)
>  at 
> org.netbeans.modules.maven.execute.MavenCommandLineExecutor.run(MavenCommandLineExecutor.java:246)
> [catch] at 
> org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:128)



--
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-4032) When creating a new maven project from archetype i get an NPE from the MavenCommandLineExecutor

2020-03-18 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-4032.

Fix Version/s: 12.0
   Resolution: Duplicate

> When creating a new maven project from archetype i get an NPE from the 
> MavenCommandLineExecutor
> ---
>
> Key: NETBEANS-4032
> URL: https://issues.apache.org/jira/browse/NETBEANS-4032
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 12.0
> Environment: Product Version: Apache NetBeans IDE 12.0-beta1
> Java: 11; Java HotSpot(TM) 64-Bit Server VM 11+28
> Runtime: Java(TM) SE Runtime Environment 11+28
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
> User directory: 
> C:\Users\luca.mambretti.BZDOMAIN\AppData\Roaming\NetBeans\12.0-beta1
> Cache directory: 
> C:\Users\luca.mambretti.BZDOMAIN\AppData\Local\NetBeans\Cache\12.0-beta1
>Reporter: Luca Mambretti
>Priority: Major
> Fix For: 12.0
>
>
> During NetCat 12 Maven tests using case "New Archetype Wizard", i got the 
> following error while using the maven-archetype-quickstart
>  
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.maven.execute.MavenCommandLineExecutor.isEventSpyCompatible(MavenCommandLineExecutor.java:338)
>  at 
> org.netbeans.modules.maven.execute.MavenCommandLineExecutor.run(MavenCommandLineExecutor.java:246)
>  [catch] at 
> org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:128)
>  
> Also the create project taskbar notification stays there forever even thou 
> the project creation actually failed, trying to cancel it does nothing and 
> creating a new project just creates a new taskbar notification.



--
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-4030) FlatLaf: selection not painted in libraries category in project dialog

2020-03-18 Thread Karl Tauber (Jira)


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

Karl Tauber commented on NETBEANS-4030:
---

Same problem in Nimbus LaF:

!image-2020-03-18-09-34-17-586.png!

> FlatLaf: selection not painted in libraries category in project dialog 
> ---
>
> Key: NETBEANS-4030
> URL: https://issues.apache.org/jira/browse/NETBEANS-4030
> Project: NetBeans
>  Issue Type: Bug
>  Components: FlatLaf
>Affects Versions: 11.3
>Reporter: Karl Tauber
>Assignee: Karl Tauber
>Priority: Major
> Attachments: image-2020-03-17-19-05-30-099.png, 
> image-2020-03-17-19-05-44-489.png, image-2020-03-17-19-09-48-899.png, 
> image-2020-03-17-19-10-39-158.png, image-2020-03-18-09-34-17-586.png
>
>
> In Project properties dialog in category Libraries, if a item is selected it 
> is not painted anymore in FlatLaf Light:
> !image-2020-03-17-19-05-30-099.png!
> Unselected:
> !image-2020-03-17-19-05-44-489.png!



--
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-4033) Profile file action of a maven project is broken

2020-03-18 Thread Luca Mambretti (Jira)
Luca Mambretti created NETBEANS-4033:


 Summary: Profile file action of a maven project is broken
 Key: NETBEANS-4033
 URL: https://issues.apache.org/jira/browse/NETBEANS-4033
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 12.0
 Environment: Product Version: Apache NetBeans IDE 12.0-beta1
Java: 11; Java HotSpot(TM) 64-Bit Server VM 11+28
Runtime: Java(TM) SE Runtime Environment 11+28
System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
User directory: 
C:\Users\luca.mambretti.BZDOMAIN\AppData\Roaming\NetBeans\12.0-beta1
Cache directory: 
C:\Users\luca.mambretti.BZDOMAIN\AppData\Local\NetBeans\Cache\12.0-beta1
Reporter: Luca Mambretti


When trying to profile a single file in a maven project an incorrect command 
line is generated.

following the generated command as shown in the IDE output

cd D:\Progetti\PERS\NetCat-12\QuickstartPrj; "JAVA_HOME=C:\\Program 
Files\\Java\\jdk-11" cmd /c "\"C:\\Program 
Files\\NetBeans-12.beta1\\java\\maven\\bin\\mvn.cmd\" 
-Dexec.args=\"-agentpath:\\\"C:/Program 
Files/NetBeans-12.beta1/profiler/lib/deployed/jdk16/windows-amd64/profilerinterface.dll\\\"=\\\"C:\\Program
 Files\\NetBeans-12.beta1\\profiler\\lib\\\",5140,10 
-XX:+HeapDumpOnOutOfMemoryError 
-XX:HeapDumpPath=D:\\Progetti\\PERS\\NetCat-12\\QuickstartPrj\\nbproject\\private\\profiler
 -classpath %classpath it.mambretti.quickstartprj.TestMain\" 
-Dexec.executable=\"C:\\Program Files\\Java\\jdk-11\\bin\\java.exe\" 
-Dexec.classpathScope=runtime -Dmaven.ext.class.path=\"C:\\Program 
Files\\NetBeans-12.beta1\\java\\maven-nblib\\netbeans-eventspy.jar\" 
-Dfile.encoding=UTF-8 org.codehaus.mojo:exec-maven-plugin:1.5.0:exec"
Running NetBeans Compile On Save execution. Phase execution is skipped and 
output directories of dependency projects (with Compile on Save turned on) will 
be used instead of their jar artifacts.
The syntax of the command is incorrect.



--
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-4030) FlatLaf: selection not painted in libraries category in project dialog

2020-03-18 Thread Karl Tauber (Jira)


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

Karl Tauber updated NETBEANS-4030:
--
Attachment: image-2020-03-18-09-34-17-586.png

> FlatLaf: selection not painted in libraries category in project dialog 
> ---
>
> Key: NETBEANS-4030
> URL: https://issues.apache.org/jira/browse/NETBEANS-4030
> Project: NetBeans
>  Issue Type: Bug
>  Components: FlatLaf
>Affects Versions: 11.3
>Reporter: Karl Tauber
>Assignee: Karl Tauber
>Priority: Major
> Attachments: image-2020-03-17-19-05-30-099.png, 
> image-2020-03-17-19-05-44-489.png, image-2020-03-17-19-09-48-899.png, 
> image-2020-03-17-19-10-39-158.png, image-2020-03-18-09-34-17-586.png
>
>
> In Project properties dialog in category Libraries, if a item is selected it 
> is not painted anymore in FlatLaf Light:
> !image-2020-03-17-19-05-30-099.png!
> Unselected:
> !image-2020-03-17-19-05-44-489.png!



--
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-4032) When creating a new maven project from archetype i get an NPE from the MavenCommandLineExecutor

2020-03-18 Thread Luca Mambretti (Jira)


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

Luca Mambretti updated NETBEANS-4032:
-
Description: 
During NetCat 12 Maven tests using case "New Archetype Wizard", i got the 
following error while using the maven-archetype-quickstart

 

java.lang.NullPointerException
 at 
org.netbeans.modules.maven.execute.MavenCommandLineExecutor.isEventSpyCompatible(MavenCommandLineExecutor.java:338)
 at 
org.netbeans.modules.maven.execute.MavenCommandLineExecutor.run(MavenCommandLineExecutor.java:246)
 [catch] at 
org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:128)

 

Also the create project taskbar notification stays there forever even thou the 
project creation actually failed, trying to cancel it does nothing and creating 
a new project just creates a new taskbar notification.

  was:
During NetCat 12 Maven tests using case "New Archetype Wizard", i got the 
following error while using the maven-archetype-quickstart

 

java.lang.NullPointerException
 at 
org.netbeans.modules.maven.execute.MavenCommandLineExecutor.isEventSpyCompatible(MavenCommandLineExecutor.java:338)
 at 
org.netbeans.modules.maven.execute.MavenCommandLineExecutor.run(MavenCommandLineExecutor.java:246)
[catch] at 
org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:128)


> When creating a new maven project from archetype i get an NPE from the 
> MavenCommandLineExecutor
> ---
>
> Key: NETBEANS-4032
> URL: https://issues.apache.org/jira/browse/NETBEANS-4032
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 12.0
> Environment: Product Version: Apache NetBeans IDE 12.0-beta1
> Java: 11; Java HotSpot(TM) 64-Bit Server VM 11+28
> Runtime: Java(TM) SE Runtime Environment 11+28
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
> User directory: 
> C:\Users\luca.mambretti.BZDOMAIN\AppData\Roaming\NetBeans\12.0-beta1
> Cache directory: 
> C:\Users\luca.mambretti.BZDOMAIN\AppData\Local\NetBeans\Cache\12.0-beta1
>Reporter: Luca Mambretti
>Priority: Major
>
> During NetCat 12 Maven tests using case "New Archetype Wizard", i got the 
> following error while using the maven-archetype-quickstart
>  
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.maven.execute.MavenCommandLineExecutor.isEventSpyCompatible(MavenCommandLineExecutor.java:338)
>  at 
> org.netbeans.modules.maven.execute.MavenCommandLineExecutor.run(MavenCommandLineExecutor.java:246)
>  [catch] at 
> org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:128)
>  
> Also the create project taskbar notification stays there forever even thou 
> the project creation actually failed, trying to cancel it does nothing and 
> creating a new project just creates a new taskbar notification.



--
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-4032) When creating a new maven project from archetype i get an NPE from the MavenCommandLineExecutor

2020-03-18 Thread Luca Mambretti (Jira)
Luca Mambretti created NETBEANS-4032:


 Summary: When creating a new maven project from archetype i get an 
NPE from the MavenCommandLineExecutor
 Key: NETBEANS-4032
 URL: https://issues.apache.org/jira/browse/NETBEANS-4032
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Affects Versions: 12.0
 Environment: Product Version: Apache NetBeans IDE 12.0-beta1
Java: 11; Java HotSpot(TM) 64-Bit Server VM 11+28
Runtime: Java(TM) SE Runtime Environment 11+28
System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
User directory: 
C:\Users\luca.mambretti.BZDOMAIN\AppData\Roaming\NetBeans\12.0-beta1
Cache directory: 
C:\Users\luca.mambretti.BZDOMAIN\AppData\Local\NetBeans\Cache\12.0-beta1
Reporter: Luca Mambretti


During NetCat 12 Maven tests using case "New Archetype Wizard", i got the 
following error while using the maven-archetype-quickstart

 

java.lang.NullPointerException
 at 
org.netbeans.modules.maven.execute.MavenCommandLineExecutor.isEventSpyCompatible(MavenCommandLineExecutor.java:338)
 at 
org.netbeans.modules.maven.execute.MavenCommandLineExecutor.run(MavenCommandLineExecutor.java:246)
[catch] at 
org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:128)



--
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-2438) Groovy project

2020-03-18 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-2438:
-

I think the way to go would be to use Maven, not Ant/Ivy, do you agree?

> Groovy project
> --
>
> Key: NETBEANS-2438
> URL: https://issues.apache.org/jira/browse/NETBEANS-2438
> Project: NetBeans
>  Issue Type: New Feature
>  Components: apisupport - Project
>Affects Versions: 11.0
>Reporter: Walter Kruse
>Priority: Major
> Fix For: 12.0
>
>
> As a test automator using Groovy scripting, when I create a new project I 
> want to be able to:
> -create a Groovy project (with or without Maven/Ivy)
> -that will be able to run a classless script
> -execute @Grab statements to collect jars upon executing
> Test case:
> {{groovy.grape.Grape.grab(group:'org.apache.commons', module:'commons-lang3', 
> version:'3.3.2'}}
> {{def s = "A silly string with words"}}
> {{assert org.apache.commons.lang3.text.WordUtils.capitalizeFully(s) == 'A 
> Silly String With Words'}}
> or:
> {{@Grab(group='org.apache.commons', module='commons-lang3', version='3.3.2')}}
> {{def s = "A silly string with words"}}
> {{assert org.apache.commons.lang3.text.WordUtils.capitalizeFully(s) == 'A 
> Silly String With Words'}}
> At the moment I am using [~GeertjanWielenga]'s Pure Groovy Project from 
> [http://plugins.netbeans.org/plugin/49928/pure-groovy-project]
>  
>  



--
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-4031) Recurring NullPointerException requiring restart

2020-03-18 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4031:
-

And what does “create a project” mean? Which project, category, language, 
technology? Steps to reproduce this?

> Recurring NullPointerException requiring restart
> 
>
> Key: NETBEANS-4031
> URL: https://issues.apache.org/jira/browse/NETBEANS-4031
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Chris Breen
>Priority: Major
> Attachments: messages.log
>
>
> Brand new install of NetBeans, create a project, and occasionally when trying 
> to build or run it, the bottom left corner says "Saving 
> org.NetBeans.Samples.ClassA", which is not the name of my project and thus 
> throws the NullPointerException.  The only way to "fix" the problem is to 
> restart NetBeans, at which point it may work for a few minutes, a few hours, 
> or nope, that's about as long as it goes a few hours.



--
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-4031) Recurring NullPointerException requiring restart

2020-03-18 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4031:
-

Any clues at all so we can work on this? Which version of NetBeans? JDK? 
Operating system?

> Recurring NullPointerException requiring restart
> 
>
> Key: NETBEANS-4031
> URL: https://issues.apache.org/jira/browse/NETBEANS-4031
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Chris Breen
>Priority: Major
> Attachments: messages.log
>
>
> Brand new install of NetBeans, create a project, and occasionally when trying 
> to build or run it, the bottom left corner says "Saving 
> org.NetBeans.Samples.ClassA", which is not the name of my project and thus 
> throws the NullPointerException.  The only way to "fix" the problem is to 
> restart NetBeans, at which point it may work for a few minutes, a few hours, 
> or nope, that's about as long as it goes a few hours.



--
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] [Closed] (NETBEANS-3704) Wikipage implied in apidoc

2020-03-18 Thread Antonio Vieiro (Jira)


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

Antonio Vieiro closed NETBEANS-3704.

Resolution: Fixed

Merged. Feel free to reopen in case of need!

> Wikipage implied in apidoc
> --
>
> Key: NETBEANS-3704
> URL: https://issues.apache.org/jira/browse/NETBEANS-3704
> Project: NetBeans
>  Issue Type: Task
>  Components: website
>Reporter: Eric Barboni
>Assignee: Eric Barboni
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Hi, this is a list of wikipage the apidoc need. We should have them on the 
> netbeans.apache.org. 
> http://wiki.netbeans.org/API_Design
> http://wiki.netbeans.org/API_Design#Separate_API_for_clients_from_support_API
> http://wiki.netbeans.org/API_Design#The_Importance_of_Being_Use_Case_Oriented
> http://wiki.netbeans.org/API_Design#What_is_an_API.3F
> http://wiki.netbeans.org/APIDevelopment
> http://wiki.netbeans.org/API_Stability
> http://wiki.netbeans.org/API_Stability#deprecated
> http://wiki.netbeans.org/API_Stability#Deprecated
> http://wiki.netbeans.org/API_Stability#devel
> http://wiki.netbeans.org/API_Stability#Devel
> http://wiki.netbeans.org/API_Stability#friend
> http://wiki.netbeans.org/API_Stability#Friend
> http://wiki.netbeans.org/API_Stability#official
> http://wiki.netbeans.org/API_Stability#Official
> http://wiki.netbeans.org/API_Stability#private
> http://wiki.netbeans.org/API_Stability#Private
> http://wiki.netbeans.org/API_Stability#stable
> http://wiki.netbeans.org/API_Stability#Stable
> http://wiki.netbeans.org/API_Stability#Standard
> http://wiki.netbeans.org/API_Stability#third
> http://wiki.netbeans.org/API_Stability#Third_Party
> http://wiki.netbeans.org/Authenticator
> http://wiki.netbeans.org/BackwardCompatibilityPatches
> http://wiki.netbeans.org/BugtrackingAPISPIUseCases
> http://wiki.netbeans.org/BugtrackingCookbook
> http://wiki.netbeans.org/BuildSystemHowTo
> http://wiki.netbeans.org/DevFaqActionContextSensitive
> http://wiki.netbeans.org/DevFaqAddGlobalContext
> http://wiki.netbeans.org/DevFaqNetBeansFullHack
> http://wiki.netbeans.org/FitnessViaPostMortem
> http://wiki.netbeans.org/HtmlUIForTemplates
> http://wiki.netbeans.org/Java_DevelopersGuide
> http://wiki.netbeans.org/ParsingAPI
> http://wiki.netbeans.org/RunConfigurations49636
> http://wiki.netbeans.org/TaskDashboardDesignSpec
> http://wiki.netbeans.org/TaskManagementUseCases
> http://wiki.netbeans.org/VersioningPolicy#Compatible_change_on_the_trunk
> http://wiki.netbeans.org/wiki/view/FitnessViaTimersCounters
> http://wiki.netbeans.org/wiki/view/FolderOrdering103187
> http://wiki.netbeans.org/wiki/view/JavaHT_Modification
> http://wiki.netbeans.org/wiki/view/SignatureTest



--
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