[jira] [Updated] (NETBEANS-5134) Error nodes in Gradle subprojects

2020-12-11 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi updated NETBEANS-5134:
--
Attachment: image-2020-12-11-23-05-54-290.png

> Error nodes in Gradle subprojects
> -
>
> Key: NETBEANS-5134
> URL: https://issues.apache.org/jira/browse/NETBEANS-5134
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Gradle
>Affects Versions: 12.2
>Reporter: Jaroslav Tulach
>Assignee: Laszlo Kishalmi
>Priority: Major
> Attachments: image-2020-12-10-04-55-17-574.png, 
> image-2020-12-11-23-05-54-290.png
>
>
> I am trying to open
> [https://github.com/daemontus/heap-language/]
> project in NetBeans 12.2 and this is the result:
> !image-2020-12-10-04-55-17-574.png!
> There is a lot of Error Node. This is caused by {{SourcesNodeFactory}}:
> {code:java}
> @Override
> public Node node(SourceGroup group) {
> Project owner = FileOwnerQuery.getOwner(group.getRootFolder());
> if (owner != project) {
> if (owner == null) {
> //#152418 if project for folder is not found, just look 
> the other way..
> 
> Logger.getLogger(SourcesNodeFactory.class.getName()).log(Level.INFO, "Cannot 
> find a project owner for folder {0}", group.getRootFolder()); //NOI18N
> return null;
> }
> AbstractNode erroNode = new AbstractNode(Children.LEAF);
> String prjText = 
> ProjectUtils.getInformation(owner).getDisplayName();
> //TODO: Could this happen? Use Bundle.
> erroNode.setDisplayName("Error Node: " + 
> group.getDisplayName() + " " + prjText);
> return erroNode;
> } {code}
> the {{group.getRootFolder()}} belongs to sub project, but the {{owner}} is 
> identified as the parent 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] [Updated] (NETBEANS-5134) Error nodes in Gradle subprojects

2020-12-09 Thread Jaroslav Tulach (Jira)


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

Jaroslav Tulach updated NETBEANS-5134:
--
Description: 
I am trying to open

[https://github.com/daemontus/heap-language/]

project in NetBeans 12.2 and this is the result:

!image-2020-12-10-04-55-17-574.png!

There is a lot of Error Node. This is caused by {{SourcesNodeFactory}}:
{code:java}
@Override
public Node node(SourceGroup group) {
Project owner = FileOwnerQuery.getOwner(group.getRootFolder());
if (owner != project) {
if (owner == null) {
//#152418 if project for folder is not found, just look the 
other way..

Logger.getLogger(SourcesNodeFactory.class.getName()).log(Level.INFO, "Cannot 
find a project owner for folder {0}", group.getRootFolder()); //NOI18N
return null;
}
AbstractNode erroNode = new AbstractNode(Children.LEAF);
String prjText = 
ProjectUtils.getInformation(owner).getDisplayName();
//TODO: Could this happen? Use Bundle.
erroNode.setDisplayName("Error Node: " + group.getDisplayName() 
+ " " + prjText);
return erroNode;
} {code}
the {{group.getRootFolder()}} belongs to sub project, but the {{owner}} is 
identified as the parent project.

  was:
I am trying to open

[https://github.com/daemontus/heap-language/]

project in NetBeans 12.2 and this is the result:

!image-2020-12-10-04-55-17-574.png!

There is a lot of Error Node. This is caused by
{code:java}
@Override
public Node node(SourceGroup group) {
Project owner = FileOwnerQuery.getOwner(group.getRootFolder());
if (owner != project) {
if (owner == null) {
//#152418 if project for folder is not found, just look the 
other way..

Logger.getLogger(SourcesNodeFactory.class.getName()).log(Level.INFO, "Cannot 
find a project owner for folder {0}", group.getRootFolder()); //NOI18N
return null;
}
AbstractNode erroNode = new AbstractNode(Children.LEAF);
String prjText = 
ProjectUtils.getInformation(owner).getDisplayName();
//TODO: Could this happen? Use Bundle.
erroNode.setDisplayName("Error Node: " + group.getDisplayName() 
+ " " + prjText);
return erroNode;
} {code}
the {{group.getRootFolder()}} belongs to sub project, but the {{owner}} is 
identified as the parent project.


> Error nodes in Gradle subprojects
> -
>
> Key: NETBEANS-5134
> URL: https://issues.apache.org/jira/browse/NETBEANS-5134
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Gradle
>Affects Versions: 12.2
>Reporter: Jaroslav Tulach
>Assignee: Laszlo Kishalmi
>Priority: Major
> Attachments: image-2020-12-10-04-55-17-574.png
>
>
> I am trying to open
> [https://github.com/daemontus/heap-language/]
> project in NetBeans 12.2 and this is the result:
> !image-2020-12-10-04-55-17-574.png!
> There is a lot of Error Node. This is caused by {{SourcesNodeFactory}}:
> {code:java}
> @Override
> public Node node(SourceGroup group) {
> Project owner = FileOwnerQuery.getOwner(group.getRootFolder());
> if (owner != project) {
> if (owner == null) {
> //#152418 if project for folder is not found, just look 
> the other way..
> 
> Logger.getLogger(SourcesNodeFactory.class.getName()).log(Level.INFO, "Cannot 
> find a project owner for folder {0}", group.getRootFolder()); //NOI18N
> return null;
> }
> AbstractNode erroNode = new AbstractNode(Children.LEAF);
> String prjText = 
> ProjectUtils.getInformation(owner).getDisplayName();
> //TODO: Could this happen? Use Bundle.
> erroNode.setDisplayName("Error Node: " + 
> group.getDisplayName() + " " + prjText);
> return erroNode;
> } {code}
> the {{group.getRootFolder()}} belongs to sub project, but the {{owner}} is 
> identified as the parent 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