[jira] [Commented] (NETBEANS-5800) Tutorial is marked as "needs review". I agree, and have some ideas

2021-06-22 Thread Kevin O'Gorman (Jira)


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

Kevin O'Gorman commented on NETBEANS-5800:
--

Oddly, yes.  Since there were quite a few things I had to install, and none
of the tools had the menu mentioned, it would be nice to say even just
"start NetBeans", but probably a bit more than that.
It probably seems obvious to you because you know NetBeans has that menu
item.  I didn't, and you didn't way *whose* File menu to use.

Like I said, you need  to try this on a real newb.  An expert cannot
possibly imagine how confusing it is to start your favorite project.

On Sat, Jun 19, 2021 at 9:32 PM Geertjan Wielenga (Jira) 



-- 
*Kevin O'Gorman (he/him/his)*
*Explore, enjoy and protect the environment.*


> Tutorial is marked as "needs review".  I agree, and have some ideas
> ---
>
> Key: NETBEANS-5800
> URL: https://issues.apache.org/jira/browse/NETBEANS-5800
> Project: NetBeans
>  Issue Type: Improvement
>  Components: apisupport - API docs
>Reporter: Kevin O'Gorman
>Priority: Blocker
>
> The subject here is not code, but a HOWTO. 
> [https://netbeans.apache.org/kb/docs/webclient/html5-gettingstarted.html.]  
> It says to open a Jira issue, but this interface does not seem adapted to 
> issues about documentation. 
> For a complete newb like me (newb to this anyway.  I've been programming 
> since 1962) the early steps are a mess.  It says for a completed project I'll 
> need a list of things.  But that's too early for this information.  Show me 
> what I need and how to get it as I go along.  I wound up getting what I 
> could, and have no idea if it's emough. Introduce each one along the way and 
> say how to get it.  Lots of information comes too early to be useful, and so 
> is just confusing.
> Somehow, I meandered down to "Creating a NetBeans HTML5 Project" and it says 
> click File->New Project.
> +*What?*+  I was left looking at Chrome, not an application with a menu bar.
> It took me a while to find out how to get to that point,, and I did that by 
> guessing.  I finally found Apache NetBeans in the Window Start menu.  You 
> should be kinder to newbs.  Tell them how to get from one part to the next.
> Even then, there is a lot of talk about capabilities that I don't understand 
> yet.  Keep it simple.  Tell me how to get started, and then how to discover 
> this stuff.  If there's more than one way to get started, gave a walk-through 
> of the newb way or ways+*.*+
> +*So*+  I'm about too confused at this point to say any more.  Let's just 
> say this has not been a very good introduction.  You should pur some newbs 
> through this, and mentor them.  Take notes on what you had to provide to get 
> them through it, and incorporate that in the document.  As it stands it's 
> barely enough to give me a glimmer of hope I'll figure this out.
> I still can't seem to save the project.  This is not good.
>  



--
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: LSP: Groovy diagnostic handling. (#3009)

2021-06-22 Thread dbalek
This is an automated email from the ASF dual-hosted git repository.

dbalek 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 8aa2c91  LSP: Groovy diagnostic handling. (#3009)
8aa2c91 is described below

commit 8aa2c913074415b49cc1df4407e818a27c8a2ade
Author: Dusan Balek 
AuthorDate: Tue Jun 22 19:57:02 2021 +0200

LSP: Groovy diagnostic handling. (#3009)

* LSP: Hint suggestions for offset computed via new generic ErrorProvider 
API.
* ErrorProvider implementation for GSF languages.
* Fixing Groovy hints to work with LSP.
---
 .../editor/hints/AddImportStatementHint.java   |  16 +-
 .../hints/ImplementAllAbstractMethodsHint.java |  73 +++---
 .../groovy/editor/hints/MakeClassAbstractHint.java |  32 ++-
 .../editor/hints/RemoveUnusedImportHint.java   |  33 ++-
 .../groovy/editor/imports/ImportHelper.java| 127 +--
 ide/api.lsp/apichanges.xml |  13 ++
 ide/api.lsp/manifest.mf|   2 +-
 .../src/org/netbeans/spi/lsp/ErrorProvider.java|  26 +++
 ide/csl.api/nbproject/project.properties   |   2 +-
 ide/csl.api/nbproject/project.xml  |   9 +
 .../src/org/netbeans/modules/csl/api/EditList.java |  14 +-
 .../org/netbeans/modules/csl/core/ApiAccessor.java |  52 +
 .../csl/core/LanguageRegistrationProcessor.java|  10 +-
 .../modules/csl/hints/GsfErrorProvider.java| 186 +++
 java/java.hints/nbproject/project.xml  |   2 +-
 .../hints/infrastructure/JavaErrorProvider.java|   4 +-
 ...eans.modules.java.hints.StaticImport.properties |  13 +-
 java/java.lsp.server/nbproject/project.xml |   2 +-
 .../server/protocol/TextDocumentServiceImpl.java   | 253 ++---
 java/java.lsp.server/vscode/package-lock.json  |  12 +-
 java/java.lsp.server/vscode/package.json   |   5 +-
 21 files changed, 598 insertions(+), 288 deletions(-)

diff --git 
a/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/hints/AddImportStatementHint.java
 
b/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/hints/AddImportStatementHint.java
index 144cadc..ec029fb 100644
--- 
a/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/hints/AddImportStatementHint.java
+++ 
b/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/hints/AddImportStatementHint.java
@@ -89,7 +89,7 @@ public class AddImportStatementHint extends GroovyErrorRule {
 HintFix fixToApply = new AddImportFix(fo, fqn);
 fixList.add(fixToApply);
 
-Hint descriptor = new Hint(this, fixToApply.getDescription(), 
fo, range,
+Hint descriptor = new Hint(this, desc, fo, range,
 fixList, DEFAULT_PRIORITY);
 
 result.add(descriptor);
@@ -126,7 +126,7 @@ public class AddImportStatementHint extends GroovyErrorRule 
{
 return HintSeverity.ERROR;
 }
 
-private static class AddImportFix implements HintFix {
+private static class AddImportFix implements PreviewableFix {
 
 private final FileObject fo;
 private final String fqn;
@@ -147,7 +147,12 @@ public class AddImportStatementHint extends 
GroovyErrorRule {
 
 @Override
 public void implement() throws Exception {
-ImportHelper.addImportStatement(fo, fqn);
+getEditList().apply();
+}
+
+@Override
+public EditList getEditList() throws Exception {
+return ImportHelper.addImportStatementEdits(fo, fqn);
 }
 
 @Override
@@ -159,5 +164,10 @@ public class AddImportStatementHint extends 
GroovyErrorRule {
 public boolean isInteractive() {
 return false;
 }
+
+@Override
+public boolean canPreview() {
+return true;
+}
 }
 }
diff --git 
a/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/hints/ImplementAllAbstractMethodsHint.java
 
b/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/hints/ImplementAllAbstractMethodsHint.java
index efa5bb2..ba30377 100644
--- 
a/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/hints/ImplementAllAbstractMethodsHint.java
+++ 
b/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/hints/ImplementAllAbstractMethodsHint.java
@@ -35,6 +35,7 @@ import org.netbeans.modules.csl.api.Hint;
 import org.netbeans.modules.csl.api.HintFix;
 import org.netbeans.modules.csl.api.HintSeverity;
 import org.netbeans.modules.csl.api.OffsetRange;
+import org.netbeans.modules.csl.api.PreviewableFix;
 import org.netbeans.modules.csl.api.RuleContext;
 import org.netbeans.modules.editor.indent.api.IndentUtils;
 import org.netbeans.modules.groovy.editor.api.lexer.GroovyTokenId;
@@ -70,7 +71,7 @@ public final class ImplementAllAbstractMethodsHint extends 
GroovyErrorRule {
 
   

[jira] [Commented] (NETBEANS-5802) Gradle project wizard should use gradle init

2021-06-22 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi commented on NETBEANS-5802:
---

Well NETBEANS-5768 could be an easy fix in GradleFiles. Adding a few suitable 
unit tests there would help as well, but as long as the Gradle Tests runs we 
would be good.

> Gradle project wizard should use gradle init
> 
>
> Key: NETBEANS-5802
> URL: https://issues.apache.org/jira/browse/NETBEANS-5802
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Gradle
>Affects Versions: 12.3
>Reporter: Jaroslav Tulach
>Assignee: Laszlo Kishalmi
>Priority: Major
>
> Hello Laszlo. As soon as I implemented the [VSCode project 
> wizard|https://github.com/apache/netbeans/pull/2999] I got following feedback:
> {quote}The New Java Project wizard uses an unusual Gradle template with an 
> older deprecated plugins syntax and jacoco included for some reason.
> To make this feature maintainable we should instead use the existing "gradle 
> init" functionality:
> {code:java}
> gradle init --type java-application --test-framework junit-jupiter --dsl 
> groovy --package com.example --project-name example
> {code}
> {quote}
> Shall we switch the new project in NetBeans to use the above given command? 
> Do you want to do it? Or shall I do it?



--
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-5803) Maven Micronaut projects can not be customized.

2021-06-22 Thread ASF GitHub Bot (Jira)


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

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

> Maven Micronaut projects can not be customized.
> ---
>
> Key: NETBEANS-5803
> URL: https://issues.apache.org/jira/browse/NETBEANS-5803
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Martin Entlicher
>Assignee: Martin Entlicher
>Priority: Critical
>  Labels: pull-request-available
> Fix For: 12.5
>
> Attachments: Screenshot from 2021-06-21 18-15-59.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> The maven project support does not handle `https` XML namespace.
> http protocol is expected:
> `http://maven.apache.org/POM/4.0.0"` 
> The maven project support does not handle https:
> `https://maven.apache.org/POM/4.0.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-5802) Gradle project wizard should use gradle init

2021-06-22 Thread Jaroslav Tulach (Jira)


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

Jaroslav Tulach commented on NETBEANS-5802:
---

One problem discovered. The project generated by {{gradle init}} doesn't have 
{{build.gradle}} in the root! There is only {{settings.gradle}}
{code:java}
 settings.gradle
 app/build.gradle
 app/src/ {code}
which includes the {{app}} subproject. The IDE should be changed to recognize 
{{settings.gradle}} as a Gradle project. That'd be simple. However I am not 
sure what'd be the consequences of doing so.

> Gradle project wizard should use gradle init
> 
>
> Key: NETBEANS-5802
> URL: https://issues.apache.org/jira/browse/NETBEANS-5802
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Gradle
>Affects Versions: 12.3
>Reporter: Jaroslav Tulach
>Assignee: Laszlo Kishalmi
>Priority: Major
>
> Hello Laszlo. As soon as I implemented the [VSCode project 
> wizard|https://github.com/apache/netbeans/pull/2999] I got following feedback:
> {quote}The New Java Project wizard uses an unusual Gradle template with an 
> older deprecated plugins syntax and jacoco included for some reason.
> To make this feature maintainable we should instead use the existing "gradle 
> init" functionality:
> {code:java}
> gradle init --type java-application --test-framework junit-jupiter --dsl 
> groovy --package com.example --project-name example
> {code}
> {quote}
> Shall we switch the new project in NetBeans to use the above given command? 
> Do you want to do it? Or shall I do it?



--
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-5806) Add hints for Switch Case Pattern Matching

2021-06-22 Thread Akhilesh Singh (Jira)
Akhilesh Singh created NETBEANS-5806:


 Summary: Add hints for Switch Case Pattern Matching
 Key: NETBEANS-5806
 URL: https://issues.apache.org/jira/browse/NETBEANS-5806
 Project: NetBeans
  Issue Type: Sub-task
Reporter: Akhilesh Singh






--
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-5805) Code formatting for Switch Case Pattern Matching

2021-06-22 Thread Akhilesh Singh (Jira)


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

Akhilesh Singh reassigned NETBEANS-5805:


Assignee: Akhilesh Singh

> Code formatting for Switch Case Pattern Matching
> 
>
> Key: NETBEANS-5805
> URL: https://issues.apache.org/jira/browse/NETBEANS-5805
> Project: NetBeans
>  Issue Type: Sub-task
>  Components: editor - Formatting  Indentation
>Reporter: Akhilesh Singh
>Assignee: Akhilesh Singh
>Priority: Major
>




--
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-5805) Code formatting for Switch Case Pattern Matching

2021-06-22 Thread Akhilesh Singh (Jira)
Akhilesh Singh created NETBEANS-5805:


 Summary: Code formatting for Switch Case Pattern Matching
 Key: NETBEANS-5805
 URL: https://issues.apache.org/jira/browse/NETBEANS-5805
 Project: NetBeans
  Issue Type: Sub-task
  Components: editor - Formatting  Indentation
Reporter: Akhilesh Singh






--
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-5804) Naming suggestions for Switch Pattern Type variable

2021-06-22 Thread Akhilesh Singh (Jira)


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

Akhilesh Singh reassigned NETBEANS-5804:


Assignee: Akhilesh Singh

> Naming suggestions for Switch Pattern Type variable
> ---
>
> Key: NETBEANS-5804
> URL: https://issues.apache.org/jira/browse/NETBEANS-5804
> Project: NetBeans
>  Issue Type: Sub-task
>  Components: java - Editor
>Reporter: Akhilesh Singh
>Assignee: Akhilesh Singh
>Priority: Major
>




--
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-5804) Naming suggestions for Switch Pattern Type variable

2021-06-22 Thread Akhilesh Singh (Jira)
Akhilesh Singh created NETBEANS-5804:


 Summary: Naming suggestions for Switch Pattern Type variable
 Key: NETBEANS-5804
 URL: https://issues.apache.org/jira/browse/NETBEANS-5804
 Project: NetBeans
  Issue Type: Sub-task
  Components: java - Editor
Reporter: Akhilesh Singh






--
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-5467) Fix all imports attempts to import "java"

2021-06-22 Thread Eric D. (Jira)


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

Eric D. commented on NETBEANS-5467:
---

Still in 12.4 :

!nb12-fix-imports-java.png!

> Fix all imports attempts to import "java"
> -
>
> Key: NETBEANS-5467
> URL: https://issues.apache.org/jira/browse/NETBEANS-5467
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2, 12.4
> Environment: GNU / Linux, OpenJDK 11
>Reporter: Francesco Chicchiriccò
>Priority: Major
> Attachments: image-2021-03-18-08-19-19-109.png, 
> nb12-fix-imports-java.png
>
>
> For classes like 
> [this|https://github.com/apache/syncope/blob/master/client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/wizards/AjaxWizardMgtButtonBar.java]
>  when running "Fix all imports", Netbeans attempts to import "java" - see 
> screenshot:
>  
> !image-2021-03-18-08-19-19-109.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-5467) Fix all imports attempts to import "java"

2021-06-22 Thread Eric D. (Jira)


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

Eric D. updated NETBEANS-5467:
--
Attachment: nb12-fix-imports-java.png

> Fix all imports attempts to import "java"
> -
>
> Key: NETBEANS-5467
> URL: https://issues.apache.org/jira/browse/NETBEANS-5467
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2, 12.4
> Environment: GNU / Linux, OpenJDK 11
>Reporter: Francesco Chicchiriccò
>Priority: Major
> Attachments: image-2021-03-18-08-19-19-109.png, 
> nb12-fix-imports-java.png
>
>
> For classes like 
> [this|https://github.com/apache/syncope/blob/master/client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/wizards/AjaxWizardMgtButtonBar.java]
>  when running "Fix all imports", Netbeans attempts to import "java" - see 
> screenshot:
>  
> !image-2021-03-18-08-19-19-109.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-5467) Fix all imports attempts to import "java"

2021-06-22 Thread Eric D. (Jira)


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

Eric D. updated NETBEANS-5467:
--
Attachment: (was: nb12-fix-imports-java.png)

> Fix all imports attempts to import "java"
> -
>
> Key: NETBEANS-5467
> URL: https://issues.apache.org/jira/browse/NETBEANS-5467
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2, 12.4
> Environment: GNU / Linux, OpenJDK 11
>Reporter: Francesco Chicchiriccò
>Priority: Major
> Attachments: image-2021-03-18-08-19-19-109.png
>
>
> For classes like 
> [this|https://github.com/apache/syncope/blob/master/client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/wizards/AjaxWizardMgtButtonBar.java]
>  when running "Fix all imports", Netbeans attempts to import "java" - see 
> screenshot:
>  
> !image-2021-03-18-08-19-19-109.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



[netbeans] branch master updated (cebe93e -> 06dd1e1)

2021-06-22 Thread jtulach
This is an automated email from the ASF dual-hosted git repository.

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


from cebe93e  Merge pull request #3001 from sdedic/groovy/lsp-completion
 new 270ec4e  Honor cancel during new from template instantiation
 new 125b650  Short description is rarely useful
 new c7de9d7  Verify VSNetBeans templates can be created and are non-empty
 new 3b3aec0  Hide interactive test unit templates in VSNetBeans
 new 6bd46cd  Provide default values for used variables
 new 06dd1e1  Merge pull request #3010 from 
JaroslavTulach/jtulach/NewUsability

The 5554 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../netbeans/modules/nbcode/integration/layer.xml  |  6 +
 .../integration/resources/LambdaBody.template  |  2 +-
 .../resources/OverriddenMethodBody.template|  4 +--
 .../integration}/VerifySimpleTemplatesTest.java| 31 +-
 .../java/lsp/server/protocol/LspTemplateUI.java| 14 +-
 5 files changed, 41 insertions(+), 16 deletions(-)
 copy {ide/ide.kit/test/qa-functional/src/org/netbeans/modules/ide/kit => 
java/java.lsp.server/nbcode/integration/test/unit/src/org/netbeans/modules/nbcode/integration}/VerifySimpleTemplatesTest.java
 (74%)

-
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-5467) Fix all imports attempts to import "java"

2021-06-22 Thread Eric D. (Jira)


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

Eric D. updated NETBEANS-5467:
--
Attachment: nb12-fix-imports-java.png

> Fix all imports attempts to import "java"
> -
>
> Key: NETBEANS-5467
> URL: https://issues.apache.org/jira/browse/NETBEANS-5467
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2, 12.4
> Environment: GNU / Linux, OpenJDK 11
>Reporter: Francesco Chicchiriccò
>Priority: Major
> Attachments: image-2021-03-18-08-19-19-109.png, 
> nb12-fix-imports-java.png
>
>
> For classes like 
> [this|https://github.com/apache/syncope/blob/master/client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/wizards/AjaxWizardMgtButtonBar.java]
>  when running "Fix all imports", Netbeans attempts to import "java" - see 
> screenshot:
>  
> !image-2021-03-18-08-19-19-109.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-5467) Fix all imports attempts to import "java"

2021-06-22 Thread Eric D. (Jira)


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

Eric D. updated NETBEANS-5467:
--
Affects Version/s: 12.4

> Fix all imports attempts to import "java"
> -
>
> Key: NETBEANS-5467
> URL: https://issues.apache.org/jira/browse/NETBEANS-5467
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2, 12.4
> Environment: GNU / Linux, OpenJDK 11
>Reporter: Francesco Chicchiriccò
>Priority: Major
> Attachments: image-2021-03-18-08-19-19-109.png
>
>
> For classes like 
> [this|https://github.com/apache/syncope/blob/master/client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/wizards/AjaxWizardMgtButtonBar.java]
>  when running "Fix all imports", Netbeans attempts to import "java" - see 
> screenshot:
>  
> !image-2021-03-18-08-19-19-109.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