RE: MissingResourceException

2020-01-15 Thread Eirik Bakke
> I also wonder if we can support it longer term - gets disabled without 
> nb-javac?

Whoa--is there a chance Compile-on-Save will disappear? It's a very crucial 
feature. And how would "Apply Code Changes" in the debugger work without it?

-- Eirik

-Original Message-
From: Neil C Smith  
Sent: Wednesday, January 15, 2020 12:36 PM
To: Eirik Bakke 
Cc: Marco Rossi ; List NetBeans Mailing 
; Oliver Rettig 
Subject: Re: MissingResourceException

On Wed, 15 Jan 2020 at 17:17, Eirik Bakke  wrote:
> Though you're on ant, and I'm using Maven (and the bugzilla bug above refers 
> to Maven). Maybe they are two different bugs.

Well, related.  My first thought on this was Compile on Save.  I don't think 
I've got that enabled in a single project right now for one reason or another.  
I also wonder if we can support it longer term - gets disabled without nb-javac?

Best wishes,

Neil


NetBeans 11.2 - how to use Remote Java SE for example with Raspberry Pi?

2020-01-15 Thread Lister Jonathan
I can create the remote Java SE platform OK via Tools / Java Platforms:
[cid:image001.png@01D5CBCD.9CCC8140]

And Test Platform works fine (but I can't show the console output here because 
it is removed before I can copy / paste it)..

But when I right click a project and select Project Properties | Build | 
Compile, the Remote Java SE (rpi-heating-controller) is not shown in the 
dropdown list - as it used to be in Netbeans 8.x

Is there an alternative way to configure the project to use the Remote Java SE 
for remote debugging (in this case on a Raspberry Pi with OpenJDK 11).

Thanks,
Jonathan.



Re: MissingResourceException

2020-01-15 Thread Emilian Bold
> There was an old bug about this on 
> https://bz.apache.org/netbeans/show_bug.cgi?id=221781 . Maybe we should 
> create a corresponding new JIRA issue.

[Note: How cool the old bugzilla was migrated to Apache!]

> Well, related.  My first thought on this was Compile on Save.  I don't
> think I've got that enabled in a single project right now for one
> reason or another.  I also wonder if we can support it longer term -
> gets disabled without nb-javac?

I also disable CoS routinely and I wonder if we should leave it on by
default. Maybe leave it off makes more sense and maybe even mark it as
'best effort' / experimental.

--emi

On Wed, Jan 15, 2020 at 7:36 PM Neil C Smith  wrote:
>
> On Wed, 15 Jan 2020 at 17:17, Eirik Bakke  wrote:
> > Though you're on ant, and I'm using Maven (and the bugzilla bug above 
> > refers to Maven). Maybe they are two different bugs.
>
> Well, related.  My first thought on this was Compile on Save.  I don't
> think I've got that enabled in a single project right now for one
> reason or another.  I also wonder if we can support it longer term -
> gets disabled without nb-javac?
>
> Best wishes,
>
> Neil
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>

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

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



Re: MissingResourceException

2020-01-15 Thread Neil C Smith
On Wed, 15 Jan 2020 at 17:17, Eirik Bakke  wrote:
> Though you're on ant, and I'm using Maven (and the bugzilla bug above refers 
> to Maven). Maybe they are two different bugs.

Well, related.  My first thought on this was Compile on Save.  I don't
think I've got that enabled in a single project right now for one
reason or another.  I also wonder if we can support it longer term -
gets disabled without nb-javac?

Best wishes,

Neil

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

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



RE: MissingResourceException

2020-01-15 Thread Eirik Bakke
There was an old bug about this on 
https://bz.apache.org/netbeans/show_bug.cgi?id=221781 . Maybe we should create 
a corresponding new JIRA issue.

Though you're on ant, and I'm using Maven (and the bugzilla bug above refers to 
Maven). Maybe they are two different bugs.

-- Eirik


From: Marco Rossi 
Sent: Wednesday, January 15, 2020 4:19 AM
To: List NetBeans Mailing 
Cc: Oliver Rettig ; Eirik Bakke 
Subject: Re: MissingResourceException

Yes, it is a new ant based project. I can confirm that a clean build fixes the 
problem, until any changes on the the panel form will be performed. And this is 
very annoying, especially at first when I have to design my forms.

In the meantime I could follow the Eirik suggestion and move away from @Message 
annotations but I agree with Oliver that the problem should be fixed at the 
origin. I’ve searched on Google and found something related to an old issue on 
the Processor that seems to be fixed in Netbeans 8.2. But I’m not sure if this 
is the same case.

I published my example here: https://github.com/markreds81/MyApp


Il giorno 15 gen 2020, alle ore 07:27, Oliver Rettig 
mailto:oliver.ret...@orat.de>> ha scritto:

Hi Marco,

sometimes I get also the "MissingResource" exceptions for @Message annotations 
in bigger ant based platform apps. I cauld resolve this by invocing clean-build 
by hand for single modules. The difficulty was to find out the sequence of 
modules I have to do this. This was difficult because the update of the tagged 
icon to show that an error was resolved is not working in all cases.

So it would be great if somebody can figure out the origin of this problem. 
Thanks for writing the sequence of steps to reproduce the problem. I think this 
is a good starting point.

Is there anybody who has an idea why this cauld happen.

best regards
Oliver

Is this an ant or maven-based project?

Does doing a clean build fix the problem?

(When working with NetBeans platform applications, I find that many annotation 
changes will require a complete clean build of the entire project. For this 
reason I will probably move away from @Message annotations, and just write my 
own Bundle files.)

-- Eirik

From: Marco Rossi mailto:ma...@markreds.it>>
Sent: Tuesday, January 14, 2020 4:52 AM
To: List NetBeans Mailing 
mailto:users@netbeans.apache.org>>
Subject: MissingResourceException

Hi guys,
I’ve started to use Apache Netbeans 11.2 and I’m issuing an annoying strange 
behaviour that I can reproduce following these steps:
1.created a new project of type Netbeans Platform Application;
2.added a new module to my application;
3.added a new TopComponent window with a button on it;
4.localized the Bundle.properties to my language 
Bundle_it_IT.properties;
5.localized the button of my TopComponent. Build and Run and 
everything works well as expected…
6.… now added a new JPanel form, with a JLabel that I 
localized… try to build again but it fails with the error 


It seems to be an issue related to the @Message annotations and other keys in 
Bundle.properties file. Due to this I’m unable to put a TopComponent and a 
JPanel in the same package.
Anyone else has got this problem?

Marco Rossi mailto:ma...@markreds.it>>
Inviato dal suo MacBookPro



Re: Fwd: [Gradle] "Error Node: Source Package/Resource/Test Packages"

2020-01-15 Thread Laszlo Kishalmi

Hi!

You are most likely experiencing: 
https://issues.apache.org/jira/browse/NETBEANS-2629


The wrong is the project layout. It seems you have some source folders 
which NetBeans detects to belong to at least two projects.


We put out an error node instead of getting into confusion later on when 
files would be opened from that project.


Right now project ownership is calculated as everything what is below 
the project folder belongs to the project..


Please describe your use case if possible with some build files as well, 
I could probably come up a more precise implementation of file ownership 
detection.


On 1/15/20 4:03 AM, Giuseppe Barbieri wrote:

Hi,


we have a fully working project (using Gradle) under Eclipse 8.2 and jdk8

I updated it in order to use OpenJDK 11.05.

It works flawless under Idea, but in Netbeans 11 I have the following 
error:


https://imgur.com/f6StDVS

I tried also Netbeans 11.2, same error

What is wrong?


Giuseppe


Fwd: [Gradle] "Error Node: Source Package/Resource/Test Packages"

2020-01-15 Thread Giuseppe Barbieri
Hi,


we have a fully working project (using Gradle) under Eclipse 8.2 and jdk8

I updated it in order to use OpenJDK 11.05.

It works flawless under Idea, but in Netbeans 11 I have the following error:

https://imgur.com/f6StDVS

I tried also Netbeans 11.2, same error

What is wrong?


Giuseppe


Re: MissingResourceException

2020-01-15 Thread Marco Rossi
Yes, it is a new ant based project. I can confirm that a clean build fixes the 
problem, until any changes on the the panel form will be performed. And this is 
very annoying, especially at first when I have to design my forms.

In the meantime I could follow the Eirik suggestion and move away from @Message 
annotations but I agree with Oliver that the problem should be fixed at the 
origin. I’ve searched on Google and found something related to an old issue on 
the Processor that seems to be fixed in Netbeans 8.2. But I’m not sure if this 
is the same case.

I published my example here: https://github.com/markreds81/MyApp

> Il giorno 15 gen 2020, alle ore 07:27, Oliver Rettig  
> ha scritto:
> 
> Hi Marco,
>  
> sometimes I get also the "MissingResource" exceptions for @Message 
> annotations in bigger ant based platform apps. I cauld resolve this by 
> invocing clean-build by hand for single modules. The difficulty was to find 
> out the sequence of modules I have to do this. This was difficult because the 
> update of the tagged icon to show that an error was resolved is not working 
> in all cases. 
>  
> So it would be great if somebody can figure out the origin of this problem. 
> Thanks for writing the sequence of steps to reproduce the problem. I think 
> this is a good starting point. 
>  
> Is there anybody who has an idea why this cauld happen.
>  
> best regards
> Oliver
> 
> Is this an ant or maven-based project?
> 
>  
> Does doing a clean build fix the problem?
> 
>  
> (When working with NetBeans platform applications, I find that many 
> annotation changes will require a complete clean build of the entire project. 
> For this reason I will probably move away from @Message annotations, and just 
> write my own Bundle files.)
> 
>  
> -- Eirik
> 
>  
> From: Marco Rossi mailto:ma...@markreds.it>> 
> Sent: Tuesday, January 14, 2020 4:52 AM
> To: List NetBeans Mailing  >
> Subject: MissingResourceException
> 
>  
> Hi guys,
> 
> I’ve started to use Apache Netbeans 11.2 and I’m issuing an annoying strange 
> behaviour that I can reproduce following these steps:
> 
> created a new project of type Netbeans Platform Application;
> added a new module to my application;
> added a new TopComponent window with a button on it;
> localized the Bundle.properties to my language Bundle_it_IT.properties;
> localized the button of my TopComponent. Build and Run and everything works 
> well as expected…
> … now added a new JPanel form, with a JLabel that I localized… try to build 
> again but it fails with the error  find resource for bundle org.openide.util.NbBundle$PBundle, key 
> CTL_MyEditorTopComponent
> at java.util.ResourceBundle.getObject(ResourceBundle.java:450)
> 
> at java.util.ResourceBundle.getString(ResourceBundle.java:407)
> 
> at org.openide.util.NbBundle.getMessage(NbBundle.java:617)…>
> 
>  
> It seems to be an issue related to the @Message annotations and other keys in 
> Bundle.properties file. Due to this I’m unable to put a TopComponent and a 
> JPanel in the same package.
> 
> Anyone else has got this problem?
> 
>  
> Marco Rossi mailto:ma...@markreds.it>>
> 
> Inviato dal suo MacBookPro
>