Re: [platform][snap] How do I publish a platform app as a snap?

2019-07-25 Thread Laszlo Kishalmi
On 7/25/19 9:08 AM, Patrik Karlström wrote: It took me a while but the missing dependencies are now published to bintray and the just released version 1.1.2 of Mapton is using that. Regarding #4. Mapton is able to open and save files, will that require 'Classic confinement' and will someone

Re: [platform][snap] How do I publish a platform app as a snap?

2019-07-25 Thread Patrik Karlström
It took me a while but the missing dependencies are now published to bintray and the just released version 1.1.2 of Mapton is using that. Regarding #4. Mapton is able to open and save files, will that require 'Classic confinement' and will someone evaluate the needs for that? Will continue to rea

Available Plugins

2019-07-25 Thread Bo Andersen
Hi, why can't this be found in the native plugin list within netbeans? - Have to download it manually from the website, would also be nice if netbeans supported it out of the box 🙂 http://plugins.netbeans.org/plugin/37077/autosave-module-for-6-9-and-later Thanks Bo

Re: Is "Run JPQL Query" working?

2019-07-25 Thread Richard Grin
Hi Geertjan, Simple and quick to reproduce: 1. Create a new Maven Web Application Project (Java EE 8). Associate it with Payara 5.192 server. 2. Right click on the new project and New Entity classes from database. Choose the sample database (Java DB). Add the CUSTOMER table. Any package fo

Insert Code an EntityManager in an EJB uses a UserTransaction even if CMT

2019-07-25 Thread Richard Grin
Hi, I think there is an error in the code generated by NetBeans to use an EntityManager. I create a session Beans stateless. In this session bean, Alt-Insert > Use Entity Manager... The inserted code use UserTransaction when the bean is not annotated with @TransactionManagement( TransactionMan

Rationale for "equals() method not checking type of its parameter".

2019-07-25 Thread Owen Thomas
I want to override the equals method of a common ancestor class so it will compare two subtypes for equality regardless of what subtype they are. I noticed that when I replace this code: if (getClass() != obj.getClass()) { return false; } final Referentother = (