Re: [nbm-maven-plugin] How to add native libraries using maven?

2019-01-04 Thread venkatram . akkineni
Hi It has been a while since I've done this. So I may not be able to tell you right away by looking at your code without spending some time on it. So I've attached my module source code and the my plugin configuration below. See if it is any help. org.codehaus.mojo

Re: LexerInput.read() returns null characters after unicode characters.

2018-12-27 Thread venkatram . akkineni
First of all, thank you for the detailed answer. > LexerInput returns a primitive int. It cannot return null. Yes sir, so I get a integer value zero. EOF as you know would be a -1. I believe it is returning a null character '\0'. > The editor's lexer plumbing insists that tokens be returned fo

LexerInput.read() returns null characters after unicode characters.

2018-12-26 Thread venkatram . akkineni
I have the following string which I am trying to read through LexerInput.read(). quote టోకెన్ quote ట ో క ె న ్ 5 (quote) + 6(టోకెన్) + 5 (quote) + 2 new line characters that is a total of 18 characters. LexerInput.read() returns all the characters as expected. But it keeps going and returns

Re: Cannot start a profiling session for Netbeans on JVisualVM.

2018-12-02 Thread venkatram . akkineni
Correct me if I am wrong but I think my original suspicion was right, java parsing is consuming all the resources. https://www.photobox.co.uk/my/photo/full?photo_id=501397522836 - To unsubscribe, e-mail: dev-unsubscr...@netbean

Re: Cannot start a profiling session for Netbeans on JVisualVM.

2018-11-09 Thread venkatram . akkineni
16 GB. Its a developer laptop. - To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org For additional commands, e-mail: dev-h...@netbeans.incubator.apache.org For further information about the NetBeans mailing lis

Re: Cannot start a profiling session for Netbeans on JVisualVM.

2018-11-09 Thread venkatram . akkineni
Thanks Tim. That turned what little I know about garbage collection on its head. Need to do some more reading. Thanks Geertjan, I knew that button was there for a reason :). - To unsubscribe, e-mail: dev-unsubscr...@netbeans.

Re: question about debugging arch. on netbeans

2018-11-08 Thread venkatram . akkineni
Hi GDB is packaged in a module called cnd.debugger.gdb2. I don't think this module is in incubator-netbeans on github in case you are looking there. If I am not wrong this is part of third donation along with rest of the c/cpp modules. Here are c/c++ debugging related modules. cnd.debugger.co

Re: Cannot start a profiling session for Netbeans on JVisualVM.

2018-11-08 Thread venkatram . akkineni
Hi Thanks for the reply. Yes, I did override max heap size. Below is the netbeans_default_options string. -J-client -J-Xss2m -J-Xms32m -J-Xmx2048m -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true -J-Dsun.java2d.dpiaware=true -J-Dsun.zip.dis

Cannot start a profiling session for Netbeans on JVisualVM.

2018-11-08 Thread venkatram . akkineni
I have project of about 2000 java files. It is a legacy project so I can't do much about how many java files are in it. Correct me if I am wrong but 2000 java files in a project doesn't make it a massive project. Netbeans slows down significantly after the first half hour or so. I have to type s

Re: recommendation for language support

2018-10-30 Thread venkatram . akkineni
I have no formal programming background. I've spent last two or three years trying to learn lexers parsers. So, take what I say for what it's worth. After banging my head against, JavaCC, Antlr and Rats! for a while, I came to the conclusion that if one has never used any of those libraries (and

Re: Examples of Braces completion.

2018-10-29 Thread venkatram . akkineni
"Use case 2. - Pair characters completion" Thankyou, looks like that is exactly what I am looking for. - To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org For additional commands, e-mail: dev-h...@netbeans.inc

Re: Examples of Braces completion.

2018-10-29 Thread venkatram . akkineni
Thanks Geertjan. I was able to implement braces matching. I was hoping to get automatic brace completion working as well. - To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org For additional commands, e-mail: d

Examples of Braces completion.

2018-10-27 Thread venkatram . akkineni
Where can I find examples of braces completion. I tried doing it in IndentTask and it isn't quite working. I was thinking about getting a hold of the token sequence and working my way through. But may be looking at existing examples is a better idea. In Java, when user enters a '{' and presses