[jira] [Created] (NETBEANS-468) api.htmlui tests deadlock on mac when run

2018-03-14 Thread Austin Stephens (JIRA)
Austin Stephens created NETBEANS-468:


 Summary: api.htmlui tests deadlock on mac when run
 Key: NETBEANS-468
 URL: https://issues.apache.org/jira/browse/NETBEANS-468
 Project: NetBeans
  Issue Type: Bug
  Components: platform - HTML4J
Affects Versions: 9.0, Next
 Environment: Mac
Reporter: Austin Stephens
 Fix For: 9.0


It might be related to NETBEANS-373. It appears that the system deadlocks when 
creating the UI. The FX thread is the Native Ui thread on a mac. It appears 
that FX is waiting for Swing, which is waiting for the native thread to do 
something. Not very sure about it. Here are the stack traces I got (might be 
different each time):

Swing EDT:
{noformat}
GraphicsEnvironment.getLocalGraphicsEnvironment:81    
RepaintManager.:233    
UIManager.initialize:1464    
UIManager.maybeInitialize:1426    
UIManager.getDefaults:659    
UIManager.getBoolean:867    
ImageUtilities.isDarkLaF:182    
ImageUtilities.loadImage:142    
Splash.loadContent:215    
Splash$SplashPainter.init:353    
Splash$SplashPainter$1.run:400    
InvocationEvent.dispatch:311    
EventQueue.dispatchEventImpl:756    
EventQueue.access$500:97    
EventQueue$3.run:709    
EventQueue$3.run:703    
AccessController.doPrivileged    
ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:80    
EventQueue.dispatchEvent:726    
EventDispatchThread.pumpOneEventForFilters:201    
EventDispatchThread.pumpEventsForFilter:116    
EventDispatchThread.pumpEventsForHierarchy:105    
EventDispatchThread.pumpEvents:101    
EventDispatchThread.pumpEvents:93    
EventDispatchThread.run:82   {noformat}
AppKit/FX thread:
{noformat}
UIManager.maybeInitialize:1424    
UIManager.getLookAndFeel:492    
NbBrowsers.applyNbSkin:62    
NbBrowsers$1ApplySkin.run:54    
Hidden Source Calls    
InitializeWebView.run:45    
BrowserBuilder$1OnPageLoad$1CallInitMethod.run:310    
BrwsrCtx$1Wrap.run:120    
AbstractFXPresenter.execute:354    
BrwsrCtx.execute:131    
BrowserBuilder$1OnPageLoad.run:348    
AbstractFXPresenter.onPageLoad:135    
InitializeWebView$1.changed:64    
InitializeWebView$1.changed:57    
ExpressionHelper$SingleChange.fireValueChangedEvent:182    
ExpressionHelper.fireValueChangedEvent:81    
ReadOnlyObjectPropertyBase.fireValueChangedEvent:74    
ReadOnlyObjectWrapper.fireValueChangedEvent:102    
ObjectPropertyBase.markInvalid:112    
ObjectPropertyBase.set:146    
WebEngine$LoadWorker.updateState:1287    
WebEngine$LoadWorker.dispatchLoadEvent:1398    
WebEngine$LoadWorker.access$1200:1280    
WebEngine$PageLoadListener.dispatchLoadEvent:1267    
WebPage.fireLoadEvent:2499    
WebPage.fwkFireLoadEvent:2343    
URLLoader.twkDidFinishLoading    
URLLoader.notifyDidFinishLoading:859    
URLLoader.lambda$didFinishLoading$103:850    
1530391356.run    
PlatformImpl.lambda$null$172:295    
1314999409.run    
AccessController.doPrivileged    
PlatformImpl.lambda$runLater$173:294    
1702940637.run    
InvokeLaterDispatcher$Future.run:95   {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-444) Can't use apple.laf.AquaLookAndFeel on Java 10 anymore

2018-03-14 Thread Sven Reimers (JIRA)

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

Sven Reimers commented on NETBEANS-444:
---

Just tried and fixed the stack trace coming up, but it seems this is only the 
tip of the iceberg.

A simple grep shows the following occurrences. Seems we need a more broad fix 
to get apple ui working on different Java versions..
{code:java}
core.startup/test/unit/src/org/netbeans/core/startup/CLIOptionsTest.java: 
assertEquals("Must be MacOS", CLIOptions.uiClass, 
Class.forName("apple.laf.AquaLookAndFeel"));
core.startup/src/org/netbeans/core/startup/CLIOptions.java: ui = 
"apple.laf.AquaLookAndFeel";
core.windows/src/org/netbeans/core/windows/options/LafPanel.java: || (isAqua && 
li.getClassName().contains("apple.laf.AquaLookAndFeel")) ) { //NOI18N
core.windows/src/org/netbeans/core/windows/options/LafPanel.java: || (isAqua && 
li.getClassName().contains("apple.laf.AquaLookAndFeel")) ) { //NOI18N
ide/launcher/macosx/NetBeansLauncher/NBPreferences.m:NSString 
*look_and_feels[]={@"apple.laf.AquaLookAndFeel",@"javax.swing.plaf.metal.MetalLookAndFeel"};
nbi/engine/src/org/netbeans/installer/utils/UiUtils.java: AQUA("aqua", "Aqua", 
"apple.laf.AquaLookAndFeel"),
o.n.bootstrap/arch.xml: Aqua is translated to apple.laf.AquaLookAndFeel
o.n.swing.plaf/src/org/netbeans/swing/plaf/Startup.java: uiClassName = 
"apple.laf.AquaLookAndFeel";
openide.explorer/src/org/openide/explorer/propertysheet/PropUtils.java: if 
("apple.laf.AquaLookAndFeel".equals(UIManager.getLookAndFeel().getClass().getName()))
 {{code}
 

> Can't use apple.laf.AquaLookAndFeel on Java 10 anymore
> --
>
> Key: NETBEANS-444
> URL: https://issues.apache.org/jira/browse/NETBEANS-444
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Kirill Grouchnikov
>Priority: Major
>
> [https://github.com/apache/incubator-netbeans/blob/master/o.n.upgrader/src/org/netbeans/util/Util.java#L78]
>  stack-traces on Java 10+44
>  
> See [https://bugs.openjdk.java.net/browse/JDK-8185683] that has removed 
> access to that class and [http://jdk.java.net/10/release-notes#JDK-8185683] 
> for the release notes



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-467) maven artifacts for Apache NetBeans Platform need to be created and hosted

2018-03-14 Thread Eric Barboni (JIRA)
Eric Barboni created NETBEANS-467:
-

 Summary: maven artifacts for Apache NetBeans Platform  need to be 
created and hosted
 Key: NETBEANS-467
 URL: https://issues.apache.org/jira/browse/NETBEANS-467
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Affects Versions: 9.0
Reporter: Eric Barboni


Hi (hope I did not miss mails on this topic),

 During test on maven NetCAT, testers are told to create and generate mavenized 
NetBeans Platform Module and Suite.

 Maven archetype for Netbeans platform module [1] are linked to artefacts 
stored in  [2] (RELEASE 6 to 8.2) and it is also possible to use snapshot 
versions from [3]

Artefacts are generated from Oracle NetBeans sources at the moment, RELEASE* 
artefact were built from a specific build, SNAPSHOT artefact are refreshed 
every day with no history (I suppose for space reason).

 

It would be nice to recreate a workflow to  regenerate maven artefacts for the 
Apache NetBeans Platform from Apache NetBeans sources.

 

[1][https://github.com/mojohaus/nbm-archetype/]

[2][https://bits.netbeans.org/nexus]

[3][https://bits.netbeans.org/dev/maven-snapshot/|http://bits.netbeans.org/dev/maven-snapshot/]

 

 

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-461) Could not initialize class org.netbeans.modules.extbrowser.NbDdeBrowserImpl

2018-03-14 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot updated NETBEANS-461:

Labels: pull-request-available  (was: )

> Could not initialize class org.netbeans.modules.extbrowser.NbDdeBrowserImpl
> ---
>
> Key: NETBEANS-461
> URL: https://issues.apache.org/jira/browse/NETBEANS-461
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Code
>Affects Versions: 9.0
>Reporter: efrem mccrimon
>Priority: Major
>  Labels: pull-request-available
> Attachments: messages.log
>
>
> Class not initializing 
> When navigating to Window->Web->Web Browser
> throws the error even when a default Browser is configured in Options 
> settings.
> I was testing XSL Transformations, "Process Output" settings - Open in 
> Browser fails
>  
>  
> java.lang.NoClassDefFoundError: Could not initialize class 
> org.netbeans.modules.extbrowser.NbDdeBrowserImpl
>  at 
> org.netbeans.modules.extbrowser.ChromeBrowser.createHtmlBrowserImpl(ChromeBrowser.java:85)
>  at org.netbeans.core.NbURLDisplayer.warmBrowserUp(NbURLDisplayer.java:100)
>  at org.netbeans.core.NbURLDisplayer.access$000(NbURLDisplayer.java:47)
>  at org.netbeans.core.NbURLDisplayer$1.run(NbURLDisplayer.java:59)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
>  at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
>  at org.netbeans.core.NbURLDisplayer.showURL(NbURLDisplayer.java:55)
>  at 
> org.netbeans.core.actions.HTMLViewAction.performAction(HTMLViewAction.java:49)
>  at 
> org.openide.util.actions.CallableSystemAction$1.run(CallableSystemAction.java:105)
>  at org.openide.util.actions.ActionInvoker$1.run(ActionInvoker.java:70)
>  at 
> org.openide.util.actions.ActionInvoker.doPerformAction(ActionInvoker.java:91)
>  at org.openide.util.actions.ActionInvoker.invokeAction(ActionInvoker.java:74)
>  at 
> org.openide.util.actions.CallableSystemAction.actionPerformed(CallableSystemAction.java:102)
>  at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
>  at 
> javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348)
>  at 
> javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
>  at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
>  at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
>  at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833)
>  at 
> javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877)
>  at java.awt.Component.processMouseEvent(Component.java:6533)
>  at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
>  at java.awt.Component.processEvent(Component.java:6298)
>  at java.awt.Container.processEvent(Container.java:2236)
>  at java.awt.Component.dispatchEventImpl(Component.java:4889)
>  at java.awt.Container.dispatchEventImpl(Container.java:2294)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4888)
>  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4525)
>  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4466)
>  at java.awt.Container.dispatchEventImpl(Container.java:2280)
>  at java.awt.Window.dispatchEventImpl(Window.java:2746)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
>  at java.awt.EventQueue.access$500(EventQueue.java:97)
>  at java.awt.EventQueue$3.run(EventQueue.java:709)
>  at java.awt.EventQueue$3.run(EventQueue.java:703)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
>  at java.awt.EventQueue$4.run(EventQueue.java:731)
>  at java.awt.EventQueue$4.run(EventQueue.java:729)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
>  at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
>  at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>  at 
> java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
>  

[jira] [Commented] (NETBEANS-461) Could not initialize class org.netbeans.modules.extbrowser.NbDdeBrowserImpl

2018-03-14 Thread Eric Barboni (JIRA)

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

Eric Barboni commented on NETBEANS-461:
---

unziping 366 release 20180314

run on jdk 10 (with alteration of jdk path to configuration file)

dll is not present in the build

 

stacktrace:

java.lang.UnsatisfiedLinkError: no extbrowser64 in java.library.path: 
[C:\Users\admin\Downloads\NetBeans-dev-incubator-netbeans-linux-366-on-20180314-basic\netbeans\bin,
 C:\WINDOWS\Sun\Java\bin, C:\WINDOWS\system32, C:\WINDOWS, 
C:\ProgramData\Oracle\Java\javapath, C:\WINDOWS\system32, C:\WINDOWS, 
C:\WINDOWS\System32\Wbem, C:\WINDOWS\System32\WindowsPowerShell\v1.0\, 
C:\Users\admin\AppData\Local\Microsoft\WindowsApps, ., .]
at java.base/java.lang.ClassLoader.loadLibrary(ClassLoader.java:2654)
at java.base/java.lang.Runtime.loadLibrary0(Runtime.java:876)
at java.base/java.lang.System.loadLibrary(System.java:1875)
at 
org.netbeans.modules.extbrowser.NbDdeBrowserImpl.(NbDdeBrowserImpl.java:82)
at 
org.netbeans.modules.extbrowser.SystemDefaultBrowser.createHtmlBrowserImpl(SystemDefaultBrowser.java:94)
at 
org.netbeans.core.NbURLDisplayer.warmBrowserUp(NbURLDisplayer.java:100)
at org.netbeans.core.NbURLDisplayer.access$000(NbURLDisplayer.java:47)
at org.netbeans.core.NbURLDisplayer$1.run(NbURLDisplayer.java:59)
at 
org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
at org.netbeans.core.NbURLDisplayer.showURL(NbURLDisplayer.java:55)
at 
org.netbeans.core.actions.HTMLViewAction.performAction(HTMLViewAction.java:49)
at 
org.openide.util.actions.CallableSystemAction$1.run(CallableSystemAction.java:105)
at org.openide.util.actions.ActionInvoker$1.run(ActionInvoker.java:70)
at 
org.openide.util.actions.ActionInvoker.doPerformAction(ActionInvoker.java:91)
at 
org.openide.util.actions.ActionInvoker.invokeAction(ActionInvoker.java:74)
at 
org.openide.util.actions.CallableSystemAction.actionPerformed(CallableSystemAction.java:102)
at 
java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1967)
at 
java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308)
at 
java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405)
at 
java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262)
at 
java.desktop/javax.swing.AbstractButton.doClick(AbstractButton.java:369)
at 
java.desktop/javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:980)
at 
java.desktop/javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1024)
at 
java.desktop/java.awt.Component.processMouseEvent(Component.java:6589)
at 
java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342)
at java.desktop/java.awt.Component.processEvent(Component.java:6354)
at java.desktop/java.awt.Container.processEvent(Container.java:2260)
at 
java.desktop/java.awt.Component.dispatchEventImpl(Component.java:4966)
at 
java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2318)
at java.desktop/java.awt.Component.dispatchEvent(Component.java:4798)
at 
java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4906)
at 
java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4535)
at 
java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476)
at 
java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2304)
at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2772)
at java.desktop/java.awt.Component.dispatchEvent(Component.java:4798)
at 
java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:772)
at java.desktop/java.awt.EventQueue.access$600(EventQueue.java:97)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at 
java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87)
at 
java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:97

[jira] [Commented] (NETBEANS-461) Could not initialize class org.netbeans.modules.extbrowser.NbDdeBrowserImpl

2018-03-14 Thread Geertjan Wielenga (JIRA)

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

Geertjan Wielenga commented on NETBEANS-461:


There should have been a binaries-list added to the extbrowser module for 
downloading the two DLLs.

I'm going to do a pull request for this ASAP, but if you create a binaries-list 
file in extbrowser/external, with the content below, you'll download a ZIP file 
during the build:

2DC61D81338329D31905395F4738F58FFDCF8F2E extbrowser-dlls.zip

 

> Could not initialize class org.netbeans.modules.extbrowser.NbDdeBrowserImpl
> ---
>
> Key: NETBEANS-461
> URL: https://issues.apache.org/jira/browse/NETBEANS-461
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Code
>Affects Versions: 9.0
>Reporter: efrem mccrimon
>Priority: Major
> Attachments: messages.log
>
>
> Class not initializing 
> When navigating to Window->Web->Web Browser
> throws the error even when a default Browser is configured in Options 
> settings.
> I was testing XSL Transformations, "Process Output" settings - Open in 
> Browser fails
>  
>  
> java.lang.NoClassDefFoundError: Could not initialize class 
> org.netbeans.modules.extbrowser.NbDdeBrowserImpl
>  at 
> org.netbeans.modules.extbrowser.ChromeBrowser.createHtmlBrowserImpl(ChromeBrowser.java:85)
>  at org.netbeans.core.NbURLDisplayer.warmBrowserUp(NbURLDisplayer.java:100)
>  at org.netbeans.core.NbURLDisplayer.access$000(NbURLDisplayer.java:47)
>  at org.netbeans.core.NbURLDisplayer$1.run(NbURLDisplayer.java:59)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
>  at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
>  at org.netbeans.core.NbURLDisplayer.showURL(NbURLDisplayer.java:55)
>  at 
> org.netbeans.core.actions.HTMLViewAction.performAction(HTMLViewAction.java:49)
>  at 
> org.openide.util.actions.CallableSystemAction$1.run(CallableSystemAction.java:105)
>  at org.openide.util.actions.ActionInvoker$1.run(ActionInvoker.java:70)
>  at 
> org.openide.util.actions.ActionInvoker.doPerformAction(ActionInvoker.java:91)
>  at org.openide.util.actions.ActionInvoker.invokeAction(ActionInvoker.java:74)
>  at 
> org.openide.util.actions.CallableSystemAction.actionPerformed(CallableSystemAction.java:102)
>  at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
>  at 
> javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348)
>  at 
> javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
>  at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
>  at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
>  at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833)
>  at 
> javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877)
>  at java.awt.Component.processMouseEvent(Component.java:6533)
>  at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
>  at java.awt.Component.processEvent(Component.java:6298)
>  at java.awt.Container.processEvent(Container.java:2236)
>  at java.awt.Component.dispatchEventImpl(Component.java:4889)
>  at java.awt.Container.dispatchEventImpl(Container.java:2294)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4888)
>  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4525)
>  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4466)
>  at java.awt.Container.dispatchEventImpl(Container.java:2280)
>  at java.awt.Window.dispatchEventImpl(Window.java:2746)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
>  at java.awt.EventQueue.access$500(EventQueue.java:97)
>  at java.awt.EventQueue$3.run(EventQueue.java:709)
>  at java.awt.EventQueue$3.run(EventQueue.java:703)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
>  at java.awt.EventQueue$4.run(EventQueue.java:731)
>  at java.awt.EventQueue$4.run(EventQueue.java:729)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> 

[jira] [Created] (NETBEANS-466) Unable to uninstall plugin

2018-03-14 Thread Peter (JIRA)
Peter created NETBEANS-466:
--

 Summary: Unable to uninstall plugin
 Key: NETBEANS-466
 URL: https://issues.apache.org/jira/browse/NETBEANS-466
 Project: NetBeans
  Issue Type: Bug
  Components: platform - Plugin Manager
Affects Versions: 8.2
Reporter: Peter
 Attachments: unable to uninstall plugin.png

unable to uninstall plugin, the uninstall button is dim, unable to click on it



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-465) Hint "Split into declaration and assignment" is not valid for var type.

2018-03-14 Thread vikas kumar prabhakar (JIRA)

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

vikas kumar prabhakar updated NETBEANS-465:
---
Description: 
Warning hint "Split into declaration and assignment" is not valid for var type.

var v = 10;

Only declaration the var type variable causes the errors:

var v; -> cannot infer type for local variable v
   (cannot use 'var' on variable without initializer)

The hints "Split into declaration and assignment" should not show for var type 
declaration and assignments.

  was:
Warning hint "Split into declaration and assignment" is not valid for var type.

var v = 10;

Only declaration the var type variable causes the errors:

var v; -> cannot infer type for local variable v
  (cannot use 'var' on variable without initializer)

The hints "Split into declaration and assignment" should not show for vat type 
declaration and assignments.


> Hint "Split into declaration and assignment" is not valid for var type.
> ---
>
> Key: NETBEANS-465
> URL: https://issues.apache.org/jira/browse/NETBEANS-465
> Project: NetBeans
>  Issue Type: Bug
>Reporter: vikas kumar prabhakar
>Assignee: vikas kumar prabhakar
>Priority: Trivial
>  Labels: JDK10-LVTI
>
> Warning hint "Split into declaration and assignment" is not valid for var 
> type.
> var v = 10;
> Only declaration the var type variable causes the errors:
> var v; -> cannot infer type for local variable v
>    (cannot use 'var' on variable without initializer)
> The hints "Split into declaration and assignment" should not show for var 
> type declaration and assignments.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-465) Hint "Split into declaration and assignment" is not valid for var type.

2018-03-14 Thread vikas kumar prabhakar (JIRA)
vikas kumar prabhakar created NETBEANS-465:
--

 Summary: Hint "Split into declaration and assignment" is not valid 
for var type.
 Key: NETBEANS-465
 URL: https://issues.apache.org/jira/browse/NETBEANS-465
 Project: NetBeans
  Issue Type: Bug
Reporter: vikas kumar prabhakar
Assignee: vikas kumar prabhakar


Warning hint "Split into declaration and assignment" is not valid for var type.

var v = 10;

Only declaration the var type variable causes the errors:

var v; -> cannot infer type for local variable v
  (cannot use 'var' on variable without initializer)

The hints "Split into declaration and assignment" should not show for vat type 
declaration and assignments.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-464) Convert references in suppressed exceptions to links

2018-03-14 Thread Gili (JIRA)

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

Gili updated NETBEANS-464:
--
Component/s: java - Navigation

> Convert references in suppressed exceptions to links
> 
>
> Key: NETBEANS-464
> URL: https://issues.apache.org/jira/browse/NETBEANS-464
> Project: NetBeans
>  Issue Type: Improvement
>  Components: java - Navigation, platform - Output Window
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-release-228-on-20180312)
> Java: 9.0.4; Java HotSpot(TM) 64-Bit Server VM 9.0.4+11
> Runtime: Java(TM) SE Runtime Environment 9.0.4+11
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_CA (nb)
> User directory: C:\Users\Gili\AppData\Roaming\NetBeans\dev
> Cache directory: C:\Users\Gili\AppData\Local\NetBeans\Cache\dev
>Reporter: Gili
>Priority: Minor
>
> Netbeans converts references to source files/lines in stacktraces to 
> clickable links, but it does not currently handle suppressed exceptions.
> Expected behavior: create links from suppressed exceptions like we currently 
> do for normal exceptions.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-464) Convert references in suppressed exceptions to links

2018-03-14 Thread Gili (JIRA)

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

Gili updated NETBEANS-464:
--
Component/s: platform - Output Window

> Convert references in suppressed exceptions to links
> 
>
> Key: NETBEANS-464
> URL: https://issues.apache.org/jira/browse/NETBEANS-464
> Project: NetBeans
>  Issue Type: Improvement
>  Components: java - Navigation, platform - Output Window
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-release-228-on-20180312)
> Java: 9.0.4; Java HotSpot(TM) 64-Bit Server VM 9.0.4+11
> Runtime: Java(TM) SE Runtime Environment 9.0.4+11
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_CA (nb)
> User directory: C:\Users\Gili\AppData\Roaming\NetBeans\dev
> Cache directory: C:\Users\Gili\AppData\Local\NetBeans\Cache\dev
>Reporter: Gili
>Priority: Minor
>
> Netbeans converts references to source files/lines in stacktraces to 
> clickable links, but it does not currently handle suppressed exceptions.
> Expected behavior: create links from suppressed exceptions like we currently 
> do for normal exceptions.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-464) Convert references in suppressed exceptions to links

2018-03-14 Thread Gili (JIRA)
Gili created NETBEANS-464:
-

 Summary: Convert references in suppressed exceptions to links
 Key: NETBEANS-464
 URL: https://issues.apache.org/jira/browse/NETBEANS-464
 Project: NetBeans
  Issue Type: Improvement
 Environment: 
Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-release-228-on-20180312)
Java: 9.0.4; Java HotSpot(TM) 64-Bit Server VM 9.0.4+11
Runtime: Java(TM) SE Runtime Environment 9.0.4+11
System: Windows 10 version 10.0 running on amd64; Cp1252; en_CA (nb)
User directory: C:\Users\Gili\AppData\Roaming\NetBeans\dev
Cache directory: C:\Users\Gili\AppData\Local\NetBeans\Cache\dev
Reporter: Gili


Netbeans converts references to source files/lines in stacktraces to clickable 
links, but it does not currently handle suppressed exceptions.

Expected behavior: create links from suppressed exceptions like we currently do 
for normal exceptions.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-463) IllegalArgumentExcedption thrown if var type used for instance variables

2018-03-14 Thread Reema Taneja (JIRA)

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

Reema Taneja updated NETBEANS-463:
--
Labels: JDK10-LVTI  (was: )

> IllegalArgumentExcedption thrown if var type used for instance variables
> 
>
> Key: NETBEANS-463
> URL: https://issues.apache.org/jira/browse/NETBEANS-463
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Reema Taneja
>Assignee: Reema Taneja
>Priority: Trivial
>  Labels: JDK10-LVTI
>
> Var type can only be used for local variables but this exception should not 
> be thrown. We should display appropriate hint for invalid var usage.
> java.lang.IllegalArgumentException: Unsupported type: none, kind: NONE
>  at 
> org.netbeans.modules.java.source.usages.ClassFileUtil.encodeType(ClassFileUtil.java:294)
>  at 
> org.netbeans.modules.java.source.usages.ClassFileUtil.createFieldDescriptor(ClassFileUtil.java:148)
>  at 
> org.netbeans.api.java.source.ElementHandle.createImpl(ElementHandle.java:476)
>  at org.netbeans.api.java.source.ElementHandle.create(ElementHandle.java:397)
>  at 
> org.netbeans.modules.java.navigation.CaretListeningTask.updateNavigatorSelection(CaretListeningTask.java:296)
>  at 
> org.netbeans.modules.java.navigation.CaretListeningTask.run(CaretListeningTask.java:153)
>  at 
> org.netbeans.modules.java.navigation.CaretListeningTask.run(CaretListeningTask.java:55)
> [catch] at 
> org.netbeans.modules.java.source.JavaSourceAccessor$CancelableTaskWrapper.run(JavaSourceAccessor.java:273)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor.callParserResultTask(TaskProcessor.java:561)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$RequestPerformer.run(TaskProcessor.java:786)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$RequestPerformer.execute(TaskProcessor.java:702)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$CompilationJob.run(TaskProcessor.java:663)
>  at 
> java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:514)
>  at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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