Re: Netbeans code assist not picking up classes under JRE Full Profile

2021-02-08 Thread Lisa Ruby
I am having the same problem with Netbeans 12.0 on Windows. I use ANT. I understand the overall concept of modules. When I use anything from java.sql in my code and try using Ctrl-Shift-I to have Netbeans add the import statements to the code file, it doesn't work. Same as what Bob reported.

Re: Netbeans code assist not picking up classes under JRE Full Profile

2021-02-08 Thread Daoud Abdelmonem Faleh
I guess it will be useful to learn about JPMS and module-info.java syntax even if the IDE provides GUI for them https://www.oracle.com/corporate/features/understanding-java-9-modules.html Sent from my iPhone > On 08/02/2021, at 14:59, Bob Schellink wrote: > >  >> On Mon, Feb 8, 2021 at

Re: Netbeans code assist not picking up classes under JRE Full Profile

2021-02-08 Thread Bob Schellink
On Mon, Feb 8, 2021 at 3:19 PM Daoud Abdelmonem Faleh < abdelmonem.fa...@gmail.com> wrote: > Make sure you have Java.sql module imported > > https://docs.oracle.com/en/java/javase/14/docs/api/java.sql/module-summary.html > Ah right. Guess I thought setting to Full JRE will do that for me :P

Re: Netbeans code assist not picking up classes under JRE Full Profile

2021-02-08 Thread Thomas Kellerer
How do you do that with an Ant based project? Those modules also don't show up when you expand the "JDK" node in the "Libraries" part of the projects window. Thomas Daoud Abdelmonem Faleh schrieb am 08.02.2021 um 14:19: > Make sure you have Java.sql module imported >   >

Re: Netbeans code assist not picking up classes under JRE Full Profile

2021-02-08 Thread Daoud Abdelmonem Faleh
Make sure you have Java.sql module imported https://docs.oracle.com/en/java/javase/14/docs/api/java.sql/module-summary.html Sent from my iPhone > On 08/02/2021, at 14:10, Bob Schellink wrote: > >  > Hi all, > > With the latest Netbeans12.2 the code assist isn't identifying certain >