Code completion in java

hi j_landers,
i'm creating a simple editor with a syntax highlighting features.
now, i want to insert "code completion" facility(which is seen generally on VC++)(i.e, when a user type a dot(.) after an object, i want to display a popup menu containing relevant methods).
any suggestion'll be highly aprreciated.
THANX,
SUSHIL

d/olu_javaman,
yeah..i got ur concept and is almost same to what i've implemented so far.
see the logic i've done:
1) i parse every line i've inserted to map out the identifier and their data types.
i.e, whenever i wrote any declaration statement (like JList list ; ) i record "list" is and identifer of JList etc
that means, i can accomplish what u've said in ur statement no.3) and 4).
2) i create a JList and load the relevant methods of the identifier(before dot) and inserted in an appropriate JScrollPane and finaally inserted it on JpopupMenu. That accomplish ur statement no. 6) and 7)
3) and finally i inserted relevant Listeners to append the text after the dot on my document.
yeah..it's done but there's one problem
when i insert the selected text from the JList, my caret needs to blink on the last offset.right???
(the caret is visble on the last offset of the line, but it's not blinking)
but it's not blinking. i think i got nervous in transfering the focus to the textArea. just give me some hint on this issue.
And I'm really thankful for ur good suggestion.
regards,
sushil

Similar Messages

  • Bug on native code of OJVM java.util.zip.CRC32.updateBytes(CRC32.java)

    I want to unzip OpenOffice 1.0 files inside the OJVM but it fails into the native method java.util.zip.CRC32.updateBytes(CRC32.java).
    The first execution of the code runs OK, but the second not.
    After a long wait it shutdown the connection and the oracle trace file shows an stack trace like this:
    *** 2003-04-18 11:31:31.926
    *** SESSION ID:(17.97) 2003-04-18 11:31:31.926
    java.lang.IllegalArgumentException
    at java.util.zip.CRC32.updateBytes(CRC32.java)
    at java.util.zip.CRC32.update(CRC32.java)
    at java.util.zip.ZipInputStream.read(ZipInputStream.java)
    at oracle.xml.parser.v2.XMLByteReader.fillByteBuffer(XMLByteReader.java:354)
    at oracle.xml.parser.v2.XMLUTF8Reader.fillBuffer(XMLUTF8Reader.java:142)
    at oracle.xml.parser.v2.XMLByteReader.saveBuffer(XMLByteReader.java:448)
    at oracle.xml.parser.v2.XMLReader.fillBuffer(XMLReader.java:2012)
    at oracle.xml.parser.v2.XMLReader.skipWhiteSpace(XMLReader.java:1800)
    at oracle.xml.parser.v2.NonValidatingParser.parseMisc(NonValidatingParser.java:305)
    at oracle.xml.parser.v2.NonValidatingParser.parseProlog(NonValidatingParser.java:274)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:254)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:225)
    at com.prism.cms.frontend.EditPropertiesActions.processUpload(EditPropertiesActions.java:1901)
    Exception signal: 11 (SIGSEGV), code: 1 (Address not mapped to object), addr: 0x6d3a74a0, PC: [0x40263600, eomake_reference_to_eobjec
    t()+80]
    Registers:
    %eax: 0x54a54000 %ebx: 0x40429c20 %ecx: 0x54a546bf
    %edx: 0x6d3a7478 %edi: 0x402b27d0 %esi: 0x45c718ac
    %esp: 0xbfffbf20 %ebp: 0xbfffbf48 %eip: 0x40263600
    %efl: 0x00010206
    The code of the java method is:
    public static void processUpload(String id_page, String longname,
    String filename, String filetype,
    String s00)
    throws SQLException {
    Integer p_id = new Integer(id_page);
    String toSource;
    XMLDocument doc = null;
    DOMParser theParser = null;
    InputStream XSLStream = null;
    BufferedWriter out = null;
    #sql { select path||name||'.html' into :toSource from pages where id_page=:p_id };
    if ("Cancel".equalsIgnoreCase(s00)) {
    Jxtp.redirecUrl("/dbprism/ldoc/live/edit.html?p_source="+toSource);
    return;
    if ("no-file".equals(filename) && "no-contenttpye".equals(filetype)) {
    Jxtp.redirecUrl("/dbprism/ldoc/live/edit.html?p_source="+toSource);
    return;
    if ("xml".equalsIgnoreCase(filetype))
    #sql { call CMSj.moveFromUpload(:filename,:p_id) };
    else if ("sxw".equalsIgnoreCase(filetype)) {
    XSLProcessor processor = new XSLProcessor();
    XSLStylesheet theXSLStylesheet = null;
    BLOB locator = null;
    // open sxw file, it will be in zip format with a file named content.xml
    // then convert content.xml to document-v10.dtd with an stylesheet
    #sql { select blob_content into :locator from wpg_document where name = :filename for update };
    ZipInputStream zin = new ZipInputStream(locator.binaryStreamValue());
    ZipEntry entry;
    try {
    while((entry=zin.getNextEntry())!=null)
    if ("content.xml".equalsIgnoreCase(entry.getName())) {
    Integer newVersion;
    CLOB dstDoc;
    CMSDocURLStreamHandlerFactory.enableCMSDocURLs();
    try {
    URL inUrl = new URL("cms:/stylesheets/sxw2document-v10.xsl");
    XSLStream = inUrl.openStream();
    // Create the Stylesheet from the stream
    theXSLStylesheet = processor.newXSLStylesheet(XSLStream);
    // Stores the document processing it with the given stylesheet
    theParser = new DOMParser();
    theParser.setValidationMode(theParser.NONVALIDATING);
    theParser.setBaseURL(new URL("cms:/dtd/"));
    theParser.parse(zin);
    doc = theParser.getDocument();
    #sql { SELECT NVL(MAX(version),0)+1 INTO :newVersion FROM content
    WHERE cn_id_page = :p_id };
    #sql { INSERT INTO content( cn_id_page, version, owner, status, source_file,
    file_size, content, created, modified, created_by,
    modified_by)
    VALUES ( :p_id, :newVersion, sys_context('cms_context','user_id'),
    'Uploaded', :filename, 0 , EMPTY_CLOB(), SYSDATE, SYSDATE,
    sys_context('cms_context','user_id'),
    sys_context('cms_context','user_id')) };
    #sql { SELECT content INTO :dstDoc FROM content
    WHERE cn_id_page = :p_id AND version = :newVersion for update };
    #sql { call DBMS_LOB.trim(:inout dstDoc,0) };
    out = new BufferedWriter(dstDoc.getCharacterOutputStream(),dstDoc.getChunkSize());
    processor.processXSL(theXSLStylesheet, doc, new PrintWriter(out));
    #sql { delete from wpg_document where name=:filename };
    } catch (SAXParseException spe) {
    throw new SQLException("processUpload SAXParseException: "+xmlError(spe));
    } catch (SAXException se) {
    throw new SQLException("processUpload SAXException: "+se.getLocalizedMessage());
    } catch (XSLException xsle) {
    throw new SQLException("processUpload XSLException: "+xsle.getLocalizedMessage());
    } finally {
    if (XSLStream!=null)
    XSLStream.close();
    if (theParser!=null)
    theParser = null;
    if (out!=null) {
    out.flush();
    out.close();
    zin.close();
    } catch (IOException ioe) {
    throw new SQLException("processUpload IOException: "+ioe.getLocalizedMessage());
    } finally {
    if (XSLStream!=null)
    XSLStream = null;
    if (out!=null)
    out = null;
    if (zin!=null)
    zin = null;
    Jxtp.redirecUrl("/dbprism/ldoc/live/edit.html?p_source="+toSource);
    Basically it takes the content from a BLOB column of the wpg_document table, unzip it using java.util.zip package, look for the file content.xml and parse it using Oracle XML toolkit.
    Using an open source utility which replace java.util.package (http://jazzlib.sourceforge.net/) it works perfect because is a pure java application.
    Best regards, Marcelo.
    PD: I am using Oracle 9.2.0.2 on Linux.

    The cause of errors was a dying Westen Digital drive, specially the 48G partition reserved only for $ORACLE_BASE (/dev/sdb3 mounted on /opt/oracle).
    A simple quick scan of unmounted partition (badblocks -v /dev/sdb3) reported more than thousand new bad blocks (compared to the last scan six months ago). Although I strongly believe, specially in the case of WDC drives, that the best utility to "repair" bad blocks is the one that opens a window and prints the message: "Go to the nearest shop and buy a new drive", I was very curious to prove my suspicion just on this drive. After zero-filling the partition with dd, then formatting it (mke2fs -cc) and mounting again, the 11g installation and database creation (on the same partition) successfully completed, performing fast and smoothly. To make sure it was not a casual event, I repeated the installation once again with full success. The database itself is working fine (by now). Well, the whole procedure took me more than four hours, but I'm pretty satisfied. I learned once again - stay away from Western Digital. As Oracle cannot rely on dying drive, my friend is going tomorrow to spend a 150+ euro on two 250G Seagate Barracudas and replace both WDC drives, even though the first drive seems to be healthy.
    In general there is no difference between loading correct data from good disk into bad memory and loading the incorrect data from dying disk into good memory. In both cases the pattern is damaged. For everyone who runs into the problem similar to this, and the cause cannot be easily determined, the rule of thumb must be:
    1. test memory and, if it shows any error, check sockets and test memory modules individually
    2. check disks for bad blocks regardless of the result of memory testing
    Therefore I consider your answer being generally correct.
    Regards
    NJ

  • Jdeveloper11gR2 Cannot get code Completion Insight in *.jsp files

    I am not getting code completion insight when pressing Ctrl + Space in *.jsp files. But it works in *.java files. My version of Jdeveloper is Jdeveloper 11g Release 2 version 11.1.2.2.0 .
    Edited by: Smitha Bhatt on Jun 7, 2012 5:40 PM

    I filed bug 14169588 for this.

  • What are the code completion keys in JDeveloper on Mac?

    Does anybody know which key combinations to use for code completion in the Java editor in JDeveloper on a Mac?

    I found out myself. The default key combination (<ctrl>+ space) does not work on my Mac, it pops-up the menu of VMWare Fusion.
    So I assigned another key combination under Preferences->Shortcut Keys. The auto-complete commands to be re-asigned are "Completion Insight" and "Smart Completion Insight".

  • NetBeans 6.0 code completion without old code

    Hi,
    I've simple question for code completion in NetBeans 6.0.
    for ex. if I've this simple code:
    int aaa = 0;
    int bbb = 1;
    int ccc = aaa;
    and now I want change ccc = bbb
    just I use code completion (Ctrl-SPACE)
    int ccc = Ctrl-SPACE-ENTERaaa;
    why reason's
    int ccc = bbbaaa;
    why isn't
    int ccc = bbb;
    Any simple idea how can I accomplish it?
    Thx. Paul

    Please post only Java language questions in these forums. They do not provide support for NetBeans (or other IDEs), you might try the NetBeans site mailing list.

  • 30EA4 : Code Completion issues

    1.
    Code Completion got better in 30EA4, still I need to do 3 retries with 5 second gap in between. (both explicit and implicit)
    See log below.
    And where is preference for code completion log and deadline thresholds, Vadim promised
    30EA2 : Code Completion not working . Are they in 30EA4 ?
    2.
    Another issue in Code Completion is when I continue typing code completion list just get cleared then get repopulated with filtered value. We need to see new list with filtered value, but I wish the list not get cleared completely, instead just hide those items in the list not matching new filter.
    3.
    I want the Code Completion to fill in at lower case, do I have option to do that?
    (or you can also automatically decide case of Code Completion, if I started typing with lowercase fill in with lower case)
    Vadim asked for output log, here is the one I got, first one explicit call using ctrl+space, second on implicit call
    Exception in thread "InsightThread" java.lang.NullPointerException
    at oracle.dbtools.raptor.insight.CompletionInsight.colNamesMatch(CompletionInsight.java:1189)
    at oracle.dbtools.raptor.insight.CompletionInsight.joinConditions(CompletionInsight.java:1170)
    at oracle.dbtools.raptor.insight.CompletionInsight.complete(CompletionInsight.java:809)
    at oracle.dbtools.raptor.insight.CompletionInsight$InsightThread.run(CompletionInsight.java:399)
    Exception in thread "InsightThread" java.lang.NullPointerException
    at oracle.dbtools.raptor.insight.CompletionInsight.colNamesMatch(CompletionInsight.java:1189)
    at oracle.dbtools.raptor.insight.CompletionInsight.joinConditions(CompletionInsight.java:1170)
    at oracle.dbtools.raptor.insight.CompletionInsight.complete(CompletionInsight.java:809)
    at oracle.dbtools.raptor.insight.CompletionInsight$InsightThread.run(CompletionInsight.java:399)

    Hi,
    When I press ctrl+space after typing partial name of table (while doing select * from X___) the context menu appears, and when I select select the table name (by hitting Enter key) it doesnt replace what I had typed with what I have selected form list.
    e.g.
    If table name is customer
    select * from cust (hit ctrl+space here and select 'customer' from list)
    Now the statement appears like this
    select * from custcustomer
    Where I expect is code completion should replace what I have typed once I select the right name from list.
    Am I missing some basic settings here
    My SQL Developer version is 3.0.04
    Regards,
    Bhupendra

  • Code completion

    Hello,
    Since upgrading to java 1.4 where JCE has been included in the SDK I'm missing codecompletion in for the JCE classes. The sunjce.jar is in my classpath, and my java files compiles just fine. The compiler also finds javax.crypto.*
    What am I missing to get the code completion work. I'm using JCreator 3.10
    Code completion works in any other case. It is only JCE classes that is making the problem.

    If I choose properties for my project I see the path to the sunjce.jar Shouldn't that be it.

  • Code completion problem in netbeans 5.0

    Hi-
    I just recently switched from using ConTEXT to using netbeans 5.0. However, I cannot seem to get code compeletion to work properly (the main reason I switched).
    It doesn't work at all if I open a .java file on its own even though it's enabled.
    However, if I copy and paste the code into a <new project> then code completion works.
    Is there a way to get code completion to work without generating an entire new project? I just want a simple editor that has code completion. Is this possible with netbeans?
    Thanks!

    Never mind it took a while to find but I figured it out...
    <Ctrl>space or <Ctrl>\ opens up the code completion window
    and as an added bonus Alt+P pops up that ultra cool yellow window that tells you the formal parameters of the function as you enter arguments.
    Me loves the netbeans. Still though I have to have it in a project for it to work so the question still stands...can you use this without creating a project as to use it in a glorified editor fashion?

  • Code completion algorithms

    Hi,
    I want to create an IDE for Java language. Are there any algorithms to make code completion efficient in an IDE.
    Thanks a lot,
    Chamal.

    You may find ternary string trees handy.

  • Netbeans Code Completion

    I installed netbeans two days ago, and I'm really impressed! Since then, I have had to reinstall windows 2000 on my PC, and after reinstalling the J2SE 1.4.1 SDK and NetBeans 3.5, the javadoc part of the code completion doesn't work. I've tried everything I can think of, but it always says
    "JavaDoc not found. Either javadoc documentation for this item does not exist or you have not mounted a filesystem that contains the source for this class. The javadoc documentation that is displayed in this box is generated from source files, not from compiled javadoc documentation."
    Sounded simple enough, but I have tried mounting every set of source files I can find, to no avail. This is especially irritating as this worked automatically when I installed it the first time.
    Browsing through the help located the following information:
    "To see documentation for Java SDK classes, you must have the Java SDK sources mounted. If you are running version 1.4 of the J2SE platform, the IDE mounts the SDK sources automatically the first time you use code completion on a JDK class."
    Well, I am running a later version that 1.4, but this does not seem to have happened. I have tried following the instructions to manually mount the SDK, but this has also had no effect.
    Please can anyone offer any advise, as this is getting really frustrating.

    I have the docs in a docs folder in JAVA_HOME. I have just tried mounting this directory specifically but it didn't work. The part of the error message that says
    "The javadoc documentation that is displayed in this box is generated from source files, not from compiled javadoc documentation."
    indicates that this is not the right approach.
    The part that seems to be going wrong is the SDK mounting - this was supposed to be automatic, but although it worked the first time, does not appear to have happened.
    Does anyone know what might cause this to fail, or how the SDK should be set up for NetBeans to locate it?

  • Code Completions

    Hi all, I am using Eclipse and I am trying to figure out how to get code compleation when accessing tags to beans. Getting code completion on my beans would help spead up my JSP editing, however the JSP editor does not understand the object type to give code completion. The main parts I would love this for are loops...
    giz
    [www.classfinance.co.uk|http://www.classfinance.co.uk/Cameleon/News/]

    Gizard wrote:
    Hi all, I am using Eclipse and I am trying to figure out how to get code compleation when accessing tags to beans. Getting code completion on my beans would help spead up my JSP editing, however the JSP editor does not understand the object type to give code completion. The main parts I would love this for are loops...Ask in an Eclipse forum. This is not a JSP/JSTL problem.
    As far I can only tell that it works fine here in the latest Eclipse Java EE release.

  • Exception during code completion

    Hi:
    I am using sun one studio 4 CE. When editing java code in a specific project, I try to use code completion but get the following exceptions:
    Wed Feb 12 15:45:32 EST 2003: java.lang.IllegalArgumentException: Incompatible implementation: org.netbeans.modules.java.parser.SourceImplProxy@b874d2
    java.lang.IllegalArgumentException: Incompatible implementation: org.netbeans.modules.java.parser.SourceImplProxy@b874d2
    at org.netbeans.modules.java.JavaParserGlue.getBinding(JavaParserGlue.java:263)
    at org.netbeans.modules.java.JavaParserGlue.sourceToText(JavaParserGlue.java:650)
    at org.netbeans.modules.java.JavaParserGlue.findElement(JavaParserGlue.java:618)
    at org.netbeans.modules.editor.java.NbJavaSyntaxSupport.getMethodStartPosition(NbJavaSyntaxSupport.java:100)
    at org.netbeans.editor.ext.ExtSyntaxSupport.buildLocalVariableMap(ExtSyntaxSupport.java:322)
    at org.netbeans.editor.ext.ExtSyntaxSupport.getLocalVariableMap(ExtSyntaxSupport.java:315)
    at org.netbeans.editor.ext.ExtSyntaxSupport.findType(ExtSyntaxSupport.java:296)
    at org.netbeans.editor.ext.java.JavaCompletionQuery$Context.resolveItem(JavaCompletionQuery.java:404)
    at org.netbeans.editor.ext.java.JavaCompletionQuery$Context.resolveExp(JavaCompletionQuery.java:264)
    at org.netbeans.editor.ext.java.JavaCompletionQuery.query(JavaCompletionQuery.java:104)
    at org.netbeans.editor.ext.java.JavaCompletionQuery.query(JavaCompletionQuery.java:52)
    at org.netbeans.editor.ext.Completion.actionPerformed(Completion.java:382)
    at org.netbeans.editor.ext.Completion.popup(Completion.java:337)
    at org.netbeans.editor.ext.Completion.setPaneVisible(Completion.java:281)
    at org.netbeans.editor.ext.ExtKit$CompletionShowAction.actionPerformed(ExtKit.java:1031)
    at org.netbeans.editor.BaseAction.actionPerformed(BaseAction.java:133)
    at javax.swing.SwingUtilities.notifyAction(SwingUtilities.java:1512)
    at javax.swing.JComponent.processKeyBinding(JComponent.java:2435)
    at javax.swing.JComponent.processKeyBindings(JComponent.java:2470)
    at javax.swing.JComponent.processKeyEvent(JComponent.java:2398)
    at java.awt.Component.processEvent(Component.java:4902)
    at java.awt.Container.processEvent(Container.java:1566)
    at java.awt.Component.dispatchEventImpl(Component.java:3598)
    at java.awt.Container.dispatchEventImpl(Container.java:1623)
    at java.awt.Component.dispatchEvent(Component.java:3439)
    at java.awt.KeyboardFocusManager.redispatchEvent(KeyboardFocusManager.java:1688)
    at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(DefaultKeyboardFocusManager.java:593)
    at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(DefaultKeyboardFocusManager.java:765)
    at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(DefaultKeyboardFocusManager.java:698)
    at java.awt.DefaultKeyboardFocusManager.dispatchEvent(DefaultKeyboardFocusManager.java:559)
    at java.awt.Component.dispatchEventImpl(Component.java:3468)
    [catch] at java.awt.Container.dispatchEventImpl(Container.java:1623)
    at java.awt.Window.dispatchEventImpl(Window.java:1585)
    at java.awt.Component.dispatchEvent(Component.java:3439)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    However this DOES NOT happen in other projects!
    Any help is resolving this would be appreciated.
    Thanks.
    vjktm

    Try posting to the Studio forum. This forum is for general Sun ONE issues.

  • Import statement code generation from Java-Platform Model in Java Studio

    Problem : When you create a Java-Platform Model type project in Java Studio 8.1 and as an example You would like to create an Attribute with java.util.Date type for a Class than how can You set this Attribute type in order to create the Code Generator the standard java package reference in Your code like : "import java.util.Date;" ? What is the right syntax in the "Type'" field of the Attribute Properties dialog ?

    You should also consider using NetBeans as an alternative to JSE8.1.
    Java Studio Enterprise 8.1 is itself built on top of NetBeans version 5.0. NetBeans is an ide developed as opensource at www.netbeans.org; it is extensible ide and so add-on modules can be developed to run on top of netbeans. And that is what JSE8.1 does; JSE 8.1 is NetBeans 5.0 plus several add-on modules (like UML etc).
    The latest stable version of NetBeans is 6.0 and provides improved versions of all relevant addons found in JSE.
    Home page: www.netbeans.org
    Download: http://www.netbeans.info/downloads/index.php
    Docs: http://www.netbeans.org/kb/index.html
    Further community resources (mailing lists, issue tracking etc) : http://www.netbeans.org/community/index.html
    wiki.netbeans.org
    NetBeans download is free. And since it is developed as an opensource project, the source is freely available under CDDL license.

  • NewBie Question: Can you make a website completely with Java?

    Greetings my new Fellow Java programmers. My name is Jason and I am a computer programmer and web developer. I am verse in the following:
    1. HTML/XHTML
    2. CSS
    3. Asp.net
    4. VB.Net
    5. SQL
    I want to expand my skills to include:
    1.JAVA
    2. Action Script
    3. Java Script
    4. Ajax
    I have always wanted to learn Java and now I think it is the right time. So my question is can you create a site complete with Java or have a majority of the site functions and look attributed to Java? Is it similar to creating a site with vb.net and asp.net which utilizes html as well? Please explain. I am eager to learn this language. Thank you.
    -RomDog
    ...ROOOOOF!

    RomDog wrote:
    Is it similar to creating a site with vb.net and asp.net which utilizes html as well? Please explain. I am eager to learn this language. Thank you.
    I find it strange that you have to ask this. Of course the end result will be HTML/XHTML, that's what the browsers want. I would think that if you know the .NET side of web development, these concepts (client/server technologies) should already be clear to you.
    The short answer is yes it is possible. However if you want to learn Ajax/Javascript/Actionscript, I would learn those technologies before you learn Java web development as they are completely unrelated. You know that Javascript is not Java, right? You can implement javascript/Ajax in your .NET web applications already.
    Before you want to learn Java web development, learn Java. Seriously, learn basic Java first. It will be a great deal harder (and ultimately a lot more frustrating) to jump directly into the web development side of Java without knowing any of the basics. One of the biggest differences between .NET and Java platforms is that Microsoft basically holds your hand when it comes to making decision about which APIs to use and how to attack a problem; Java leaves you to the wolves to select from a gigantic amount of APIs and tools available that can each solve a problem in their very own way. Freedom is great, but it can be very daunting when you are just beginning.
    So before you even think about web development, I suggest you explore the java tutorial and see if you can get to grips with the language and the tool set.
    [http://java.sun.com/docs/books/tutorial/|http://java.sun.com/docs/books/tutorial/]
    When you are comfortable with the Java language and you are sure that Java web/enterprise development is still something for you, then come back and ask the question again.

  • Is there any way to fix the slow code completion in Netbeans 5.5+

    Netbeans 5.5 or Netbeans 5.5.1
    Is there any possible fix for the slow code completion within the editor? I've googled this issue and haven't found much of anything relevant.
    While, not used all the time - a faster than what it is now code completion would be helpful.
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    helloWorld
    Thanks for the response and useful response.
    :P
    I'm not a decent machine now and I guess I'll just keep on typing.
    --Todd                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • Num Lock Pad Doesn't Work With Fill In Forms

    I have Adobe XI, running Windows * and IE 11. Num Lock key pad does not work with fill in forms.  Can anyone help?

  • Posting with a Refference document.. Urgent

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. > Hi,   One document was posted in last month. Which is having 200 Line items. (t

  • Sum the sum of fields in crystal report

    In crystal report 2008, i have rows of data grouped by document number. Sum of each document (RTotal1) display at Group Footer. At the Report Footer level, I want to display the Grand Total. In formula workshop, I tried to add a formula to sum RTotal

  • RFC 2 RFC multiple recordsets into one recordset

    Hi, working on an rfc2rfc scenario where I get 4 export parameters and 3 tables. I need to map it to an rfc which consists of several parameters and only one table. Source Structure looks like this: - <rfc:Z_RFC_test_source> xmlns:rfc="urn:sap-com:do

  • Does shared photo stream pictures use up memory?

    I am wondering if when you share an album or set of pictures with someone else, does it take up storage on their phone?