You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@netbeans.apache.org by r....@afterbit.com on 2020/12/23 08:48:53 UTC

netbeans decompiler

Hello, in some cases i need to decompile java class files .. is there a
decompiler for NB (to integrate to) ?

Roberto



-- 
Questa email è stata esaminata alla ricerca di virus da AVG.
http://www.avg.com


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

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


Re: netbeans decompiler

Posted by Alonso Del Arte <al...@gmail.com>.
For example, for Hello World, you might see something like this:

  public static void main(java.lang.String[]);
    Code:
       0: getstatic     #7                  // Field
java/lang/System.out:Ljava/io/PrintStream;
       3: ldc           #13                 // String Hello, world!
       5: invokevirtual #15                 // Method
java/io/PrintStream.println:(Ljava/lang/String;)V
       8: return

On Thu, Dec 24, 2020 at 2:13 PM Som Lima <so...@gmail.com> wrote:

> "BTW What do you mean decompiler? "
>
> If you click the .class file in the project tree in Intelli J community
> Edition.  The text editor opens up containing  with the source code  of the
> .class file.
>
>
>
> On Thu, 24 Dec 2020, 19:05 Laszlo Kishalmi, <la...@gmail.com>
> wrote:
>
>> BTW What do you mean decompiler?
>>
>> If you would like to see the generated bytecode, NetBeans has a built-in
>> one, though It can't be invoked directly, so double click on a class file
>> could result:
>>
>> - Opening the corresponding source file
>> - Opening a "decompiled" class with method, member declarations and
>> bytecode
>> - Nothing. This could be a bug, happens especially on modular java
>> projects.
>> On 12/24/20 9:22 AM, Alonso Del Arte wrote:
>>
>> I mostly use IntelliJ for Scala, and I've been getting curious about how
>> Scala compiles to bytecode, so it's good to know IntelliJ has a
>> "decompiler." Paths for class files in IntelliJ projects are a bit longer
>> than in NetBeans projects. Nothing prohibitive, it's just annoying.
>>
>> How hard would it be to make this plugin? I'd take it up if I didn't
>> already have too many in-progress projects.
>>
>> Al
>>
>> On Thu, Dec 24, 2020 at 2:36 AM Som Lima <so...@gmail.com> wrote:
>>
>>> Community edition  Intelli J has a built in java decompiler.
>>>
>>>
>>>
>>> On Thu, 24 Dec 2020, 07:31 , <r....@afterbit.com> wrote:
>>>
>>>> Hi,
>>>> yes it seems for NB 8.2.. is it strange that NB do no t have an
>>>> integrated decompiler.. why?
>>>>
>>>> R.
>>>>
>>>>
>>>> Da: Alonso Del Arte <al...@gmail.com>
>>>> Inviato: giovedì 24 dicembre 2020 02:16
>>>> A: r.bottoni@afterbit.com
>>>> Oggetto: Re: netbeans decompiler
>>>>
>>>> Google led me to the debug javac plugin plugins.<
>>>> http://netbeans.org/plugin/50148/debugging-for-javac>, but that's for
>>>> NetBeans 8.0. Plus it seems to do more than what you need it to do.
>>>>
>>>> Me, personally, I just go on the command line to
>>>> build\classes\packagename and invoke javap -c.
>>>>
>>>> Al
>>>>
>>>> On Wed, Dec 23, 2020 at 3:49 AM <ma...@afterbit.com> wrote:
>>>> Hello, in some cases i need to decompile java class files .. is there a
>>>> decompiler for NB (to integrate to) ?
>>>>
>>>> Roberto
>>>>
>>>>
>>>>
>>>> --
>>>> Questa email è stata esaminata alla ricerca di virus da AVG.
>>>> http://www.avg.com
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: mailto:users-unsubscribe@netbeans.apache.org
>>>> For additional commands, e-mail: mailto:users-help@netbeans.apache.org
>>>>
>>>> For further information about the NetBeans mailing lists, visit:
>>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>>
>>>>
>>>> --
>>>> Alonso del Arte
>>>> Author at https://www.smashwords.com/profile/view/AlonsoDelarte
>>>> Musician at http://www.reverbnation.com/alonsodelarte
>>>> --
>>>> Questo messaggio è stato analizzato con Libraesva ESG ed è risultato
>>>> non infetto.
>>>> This message has been checked by Libraesva ESG and is believed to be
>>>> clean.
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscribe@netbeans.apache.org
>>>> For additional commands, e-mail: users-help@netbeans.apache.org
>>>>
>>>> For further information about the NetBeans mailing lists, visit:
>>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>>
>>>>
>>
>> --
>> Alonso del Arte
>> Author at SmashWords.com
>> <https://www.smashwords.com/profile/view/AlonsoDelarte>
>> Musician at ReverbNation.com <http://www.reverbnation.com/alonsodelarte>
>>
>>

-- 
Alonso del Arte
Author at SmashWords.com
<https://www.smashwords.com/profile/view/AlonsoDelarte>
Musician at ReverbNation.com <http://www.reverbnation.com/alonsodelarte>

Re: netbeans decompiler

Posted by Som Lima <so...@gmail.com>.
"BTW What do you mean decompiler? "

If you click the .class file in the project tree in Intelli J community
Edition.  The text editor opens up containing  with the source code  of the
.class file.



On Thu, 24 Dec 2020, 19:05 Laszlo Kishalmi, <la...@gmail.com>
wrote:

> BTW What do you mean decompiler?
>
> If you would like to see the generated bytecode, NetBeans has a built-in
> one, though It can't be invoked directly, so double click on a class file
> could result:
>
> - Opening the corresponding source file
> - Opening a "decompiled" class with method, member declarations and
> bytecode
> - Nothing. This could be a bug, happens especially on modular java
> projects.
> On 12/24/20 9:22 AM, Alonso Del Arte wrote:
>
> I mostly use IntelliJ for Scala, and I've been getting curious about how
> Scala compiles to bytecode, so it's good to know IntelliJ has a
> "decompiler." Paths for class files in IntelliJ projects are a bit longer
> than in NetBeans projects. Nothing prohibitive, it's just annoying.
>
> How hard would it be to make this plugin? I'd take it up if I didn't
> already have too many in-progress projects.
>
> Al
>
> On Thu, Dec 24, 2020 at 2:36 AM Som Lima <so...@gmail.com> wrote:
>
>> Community edition  Intelli J has a built in java decompiler.
>>
>>
>>
>> On Thu, 24 Dec 2020, 07:31 , <r....@afterbit.com> wrote:
>>
>>> Hi,
>>> yes it seems for NB 8.2.. is it strange that NB do no t have an
>>> integrated decompiler.. why?
>>>
>>> R.
>>>
>>>
>>> Da: Alonso Del Arte <al...@gmail.com>
>>> Inviato: giovedì 24 dicembre 2020 02:16
>>> A: r.bottoni@afterbit.com
>>> Oggetto: Re: netbeans decompiler
>>>
>>> Google led me to the debug javac plugin plugins.<
>>> http://netbeans.org/plugin/50148/debugging-for-javac>, but that's for
>>> NetBeans 8.0. Plus it seems to do more than what you need it to do.
>>>
>>> Me, personally, I just go on the command line to
>>> build\classes\packagename and invoke javap -c.
>>>
>>> Al
>>>
>>> On Wed, Dec 23, 2020 at 3:49 AM <ma...@afterbit.com> wrote:
>>> Hello, in some cases i need to decompile java class files .. is there a
>>> decompiler for NB (to integrate to) ?
>>>
>>> Roberto
>>>
>>>
>>>
>>> --
>>> Questa email è stata esaminata alla ricerca di virus da AVG.
>>> http://www.avg.com
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: mailto:users-unsubscribe@netbeans.apache.org
>>> For additional commands, e-mail: mailto:users-help@netbeans.apache.org
>>>
>>> For further information about the NetBeans mailing lists, visit:
>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>
>>>
>>> --
>>> Alonso del Arte
>>> Author at https://www.smashwords.com/profile/view/AlonsoDelarte
>>> Musician at http://www.reverbnation.com/alonsodelarte
>>> --
>>> Questo messaggio è stato analizzato con Libraesva ESG ed è risultato non
>>> infetto.
>>> This message has been checked by Libraesva ESG and is believed to be
>>> clean.
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@netbeans.apache.org
>>> For additional commands, e-mail: users-help@netbeans.apache.org
>>>
>>> For further information about the NetBeans mailing lists, visit:
>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>
>>>
>
> --
> Alonso del Arte
> Author at SmashWords.com
> <https://www.smashwords.com/profile/view/AlonsoDelarte>
> Musician at ReverbNation.com <http://www.reverbnation.com/alonsodelarte>
>
>

Re: netbeans decompiler

Posted by Roberto Bottoni <r....@afterbit.com>.
Hi,

yes I see the bytecode..but I would like to view the code.. as a 
decompiler do.. for example jd-gui (http://java-decompiler.github.io/)


Il 24-12-2020 20:05 Laszlo Kishalmi ha scritto:
> BTW What do you mean decompiler?
> 
> If you would like to see the generated bytecode, NetBeans has a
> built-in one, though It can't be invoked directly, so double click on
> a class file could result:
> 
> - Opening the corresponding source file
> - Opening a "decompiled" class with method, member declarations and
> bytecode
> - Nothing. This could be a bug, happens especially on modular java
> projects.
> On 12/24/20 9:22 AM, Alonso Del Arte wrote:
> 
>> I mostly use IntelliJ for Scala, and I've been getting curious about
>> how Scala compiles to bytecode, so it's good to know IntelliJ has a
>> "decompiler." Paths for class files in IntelliJ projects are a bit
>> longer than in NetBeans projects. Nothing prohibitive, it's just
>> annoying.
>> 
>> How hard would it be to make this plugin? I'd take it up if I didn't
>> already have too many in-progress projects.
>> 
>> Al
>> 
>> On Thu, Dec 24, 2020 at 2:36 AM Som Lima <so...@gmail.com>
>> wrote:
>> 
>> Community edition  Intelli J has a built in java decompiler.
>> 
>> On Thu, 24 Dec 2020, 07:31 , <r....@afterbit.com> wrote:
>> Hi,
>> yes it seems for NB 8.2.. is it strange that NB do no t have an
>> integrated decompiler.. why?
>> 
>> R.
>> 
>> Da: Alonso Del Arte <al...@gmail.com>
>> Inviato: giovedì 24 dicembre 2020 02:16
>> A: r.bottoni@afterbit.com
>> Oggetto: Re: netbeans decompiler
>> 
>> Google led me to the debug javac plugin
>> plugins.<http://netbeans.org/plugin/50148/debugging-for-javac>, but
>> that's for NetBeans 8.0. Plus it seems to do more than what you need
>> it to do.
>> 
>> Me, personally, I just go on the command line to
>> build\classes\packagename and invoke javap -c.
>> 
>> Al
>> 
>> On Wed, Dec 23, 2020 at 3:49 AM <ma...@afterbit.com>
>> wrote:
>> Hello, in some cases i need to decompile java class files .. is
>> there a
>> decompiler for NB (to integrate to) ?
>> 
>> Roberto
>> 
>> --
>> Questa email è stata esaminata alla ricerca di virus da AVG.
>> http://www.avg.com
>> 
>> 
> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: mailto:users-unsubscribe@netbeans.apache.org
>> For additional commands, e-mail:
>> mailto:users-help@netbeans.apache.org
>> 
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>> 
>> --
>> Alonso del Arte
>> Author at https://www.smashwords.com/profile/view/AlonsoDelarte
>> Musician at http://www.reverbnation.com/alonsodelarte
>> --
>> Questo messaggio è stato analizzato con Libraesva ESG ed è
>> risultato non infetto.
>> This message has been checked by Libraesva ESG and is believed to be
>> clean.
>> 
>> 
> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@netbeans.apache.org
>> For additional commands, e-mail: users-help@netbeans.apache.org
>> 
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> 
> --
> Alonso del Arte
> Author at SmashWords.com [1]
> Musician at ReverbNation.com [2] --
>  Questo messaggio è stato analizzato con Libraesva ESG ed è
> risultato non infetto.
> This message has been checked by Libraesva ESG and is believed to be
> clean.
> 
> Links:
> ------
> [1] https://www.smashwords.com/profile/view/AlonsoDelarte
> [2] http://www.reverbnation.com/alonsodelarte

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

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


Re: netbeans decompiler

Posted by Laszlo Kishalmi <la...@gmail.com>.
BTW What do you mean decompiler?

If you would like to see the generated bytecode, NetBeans has a built-in 
one, though It can't be invoked directly, so double click on a class 
file could result:

- Opening the corresponding source file
- Opening a "decompiled" class with method, member declarations and bytecode
- Nothing. This could be a bug, happens especially on modular java projects.

On 12/24/20 9:22 AM, Alonso Del Arte wrote:
> I mostly use IntelliJ for Scala, and I've been getting curious about 
> how Scala compiles to bytecode, so it's good to know IntelliJ has a 
> "decompiler." Paths for class files in IntelliJ projects are a bit 
> longer than in NetBeans projects. Nothing prohibitive, it's just annoying.
>
> How hard would it be to make this plugin? I'd take it up if I didn't 
> already have too many in-progress projects.
>
> Al
>
> On Thu, Dec 24, 2020 at 2:36 AM Som Lima <somplasticllc@gmail.com 
> <ma...@gmail.com>> wrote:
>
>     Community edition  Intelli J has a built in java decompiler.
>
>
>
>     On Thu, 24 Dec 2020, 07:31 , <r.bottoni@afterbit.com
>     <ma...@afterbit.com>> wrote:
>
>         Hi,
>         yes it seems for NB 8.2.. is it strange that NB do no t have
>         an integrated decompiler.. why?
>
>         R.
>
>
>         Da: Alonso Del Arte <alonso.delarte@gmail.com
>         <ma...@gmail.com>>
>         Inviato: giovedì 24 dicembre 2020 02:16
>         A: r.bottoni@afterbit.com <ma...@afterbit.com>
>         Oggetto: Re: netbeans decompiler
>
>         Google led me to the debug javac plugin
>         plugins.<http://netbeans.org/plugin/50148/debugging-for-javac>,
>         but that's for NetBeans 8.0. Plus it seems to do more than
>         what you need it to do.
>
>         Me, personally, I just go on the command line to
>         build\classes\packagename and invoke javap -c.
>
>         Al
>
>         On Wed, Dec 23, 2020 at 3:49 AM <mailto:r.bottoni@afterbit.com
>         <ma...@afterbit.com>> wrote:
>         Hello, in some cases i need to decompile java class files ..
>         is there a
>         decompiler for NB (to integrate to) ?
>
>         Roberto
>
>
>
>         -- 
>         Questa email è stata esaminata alla ricerca di virus da AVG.
>         http://www.avg.com
>
>
>         ---------------------------------------------------------------------
>         To unsubscribe, e-mail:
>         mailto:users-unsubscribe@netbeans.apache.org
>         <ma...@netbeans.apache.org>
>         For additional commands, e-mail:
>         mailto:users-help@netbeans.apache.org
>         <ma...@netbeans.apache.org>
>
>         For further information about the NetBeans mailing lists, visit:
>         https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>
>         -- 
>         Alonso del Arte
>         Author at https://www.smashwords.com/profile/view/AlonsoDelarte
>         Musician at http://www.reverbnation.com/alonsodelarte
>         -- 
>         Questo messaggio è stato analizzato con Libraesva ESG ed è
>         risultato non infetto.
>         This message has been checked by Libraesva ESG and is believed
>         to be clean.
>
>
>         ---------------------------------------------------------------------
>         To unsubscribe, e-mail: users-unsubscribe@netbeans.apache.org
>         <ma...@netbeans.apache.org>
>         For additional commands, e-mail:
>         users-help@netbeans.apache.org
>         <ma...@netbeans.apache.org>
>
>         For further information about the NetBeans mailing lists, visit:
>         https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>
>
> -- 
> Alonso del Arte
> Author at SmashWords.com 
> <https://www.smashwords.com/profile/view/AlonsoDelarte>
> Musician at ReverbNation.com <http://www.reverbnation.com/alonsodelarte>

Re: netbeans decompiler

Posted by Alonso Del Arte <al...@gmail.com>.
I mostly use IntelliJ for Scala, and I've been getting curious about how
Scala compiles to bytecode, so it's good to know IntelliJ has a
"decompiler." Paths for class files in IntelliJ projects are a bit longer
than in NetBeans projects. Nothing prohibitive, it's just annoying.

How hard would it be to make this plugin? I'd take it up if I didn't
already have too many in-progress projects.

Al

On Thu, Dec 24, 2020 at 2:36 AM Som Lima <so...@gmail.com> wrote:

> Community edition  Intelli J has a built in java decompiler.
>
>
>
> On Thu, 24 Dec 2020, 07:31 , <r....@afterbit.com> wrote:
>
>> Hi,
>> yes it seems for NB 8.2.. is it strange that NB do no t have an
>> integrated decompiler.. why?
>>
>> R.
>>
>>
>> Da: Alonso Del Arte <al...@gmail.com>
>> Inviato: giovedì 24 dicembre 2020 02:16
>> A: r.bottoni@afterbit.com
>> Oggetto: Re: netbeans decompiler
>>
>> Google led me to the debug javac plugin plugins.<
>> http://netbeans.org/plugin/50148/debugging-for-javac>, but that's for
>> NetBeans 8.0. Plus it seems to do more than what you need it to do.
>>
>> Me, personally, I just go on the command line to
>> build\classes\packagename and invoke javap -c.
>>
>> Al
>>
>> On Wed, Dec 23, 2020 at 3:49 AM <ma...@afterbit.com> wrote:
>> Hello, in some cases i need to decompile java class files .. is there a
>> decompiler for NB (to integrate to) ?
>>
>> Roberto
>>
>>
>>
>> --
>> Questa email è stata esaminata alla ricerca di virus da AVG.
>> http://www.avg.com
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: mailto:users-unsubscribe@netbeans.apache.org
>> For additional commands, e-mail: mailto:users-help@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>
>> --
>> Alonso del Arte
>> Author at https://www.smashwords.com/profile/view/AlonsoDelarte
>> Musician at http://www.reverbnation.com/alonsodelarte
>> --
>> Questo messaggio è stato analizzato con Libraesva ESG ed è risultato non
>> infetto.
>> This message has been checked by Libraesva ESG and is believed to be
>> clean.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@netbeans.apache.org
>> For additional commands, e-mail: users-help@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>

-- 
Alonso del Arte
Author at SmashWords.com
<https://www.smashwords.com/profile/view/AlonsoDelarte>
Musician at ReverbNation.com <http://www.reverbnation.com/alonsodelarte>

Re: netbeans decompiler

Posted by Som Lima <so...@gmail.com>.
Community edition  Intelli J has a built in java decompiler.



On Thu, 24 Dec 2020, 07:31 , <r....@afterbit.com> wrote:

> Hi,
> yes it seems for NB 8.2.. is it strange that NB do no t have an integrated
> decompiler.. why?
>
> R.
>
>
> Da: Alonso Del Arte <al...@gmail.com>
> Inviato: giovedì 24 dicembre 2020 02:16
> A: r.bottoni@afterbit.com
> Oggetto: Re: netbeans decompiler
>
> Google led me to the debug javac plugin plugins.<
> http://netbeans.org/plugin/50148/debugging-for-javac>, but that's for
> NetBeans 8.0. Plus it seems to do more than what you need it to do.
>
> Me, personally, I just go on the command line to build\classes\packagename
> and invoke javap -c.
>
> Al
>
> On Wed, Dec 23, 2020 at 3:49 AM <ma...@afterbit.com> wrote:
> Hello, in some cases i need to decompile java class files .. is there a
> decompiler for NB (to integrate to) ?
>
> Roberto
>
>
>
> --
> Questa email è stata esaminata alla ricerca di virus da AVG.
> http://www.avg.com
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: mailto:users-unsubscribe@netbeans.apache.org
> For additional commands, e-mail: mailto:users-help@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>
> --
> Alonso del Arte
> Author at https://www.smashwords.com/profile/view/AlonsoDelarte
> Musician at http://www.reverbnation.com/alonsodelarte
> --
> Questo messaggio è stato analizzato con Libraesva ESG ed è risultato non
> infetto.
> This message has been checked by Libraesva ESG and is believed to be
> clean.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@netbeans.apache.org
> For additional commands, e-mail: users-help@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>

R: netbeans decompiler

Posted by r....@afterbit.com.
Hi, 
yes it seems for NB 8.2.. is it strange that NB do no t have an integrated decompiler.. why? 

R.


Da: Alonso Del Arte <al...@gmail.com> 
Inviato: giovedì 24 dicembre 2020 02:16
A: r.bottoni@afterbit.com
Oggetto: Re: netbeans decompiler

Google led me to the debug javac plugin plugins.<http://netbeans.org/plugin/50148/debugging-for-javac>, but that's for NetBeans 8.0. Plus it seems to do more than what you need it to do.

Me, personally, I just go on the command line to build\classes\packagename and invoke javap -c.

Al

On Wed, Dec 23, 2020 at 3:49 AM <ma...@afterbit.com> wrote:
Hello, in some cases i need to decompile java class files .. is there a
decompiler for NB (to integrate to) ?

Roberto



-- 
Questa email è stata esaminata alla ricerca di virus da AVG.
http://www.avg.com


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

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


-- 
Alonso del Arte
Author at https://www.smashwords.com/profile/view/AlonsoDelarte
Musician at http://www.reverbnation.com/alonsodelarte
-- 
Questo messaggio è stato analizzato con Libraesva ESG ed è risultato non infetto.
This message has been checked by Libraesva ESG and is believed to be clean. 


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

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