Java Editor - auto complete

i'm looking for a FREE lightweight java editor that supports auto-complete and possibly code generation.
auto-complete is when you type the object and a dot, the editor pop-up a window listing all methods available for you to use.
code generation (or whatever it is called) is like a template that i can use....like i type in tryc and a space and it will create a try{ } catch{} block for me
by lightwieght, i mean th eeditor is small and does not requires a lot of memory to run. don't want a full blown editor like Eclipse, JBuilder, NetBean (they're too resource hungry). something like JCreator and TextPad. My computer is old (PIII 733 mhz, 384MB RAM)..yes, my computer motherboard only allows up to 384 MB of RAM ..this sucks when RAM is soooo cheap.
i check with most free editor, but to get auto-complete and code generation...you have to pay for it...so i'm wondering if anyone knows of a FREE one?

Use the Plug-In Manager (Plugins menu item) to review the available plugins. Click the Install tab and highlight the name, it'll display a description.
There's a couple of auto completes - I use Dot Complete (it has a minor glitch starting, I have to click Complete to get it to start)
There's a number of template facilities, both built in and as plugins.

Similar Messages

  • "Auto completion" doesn't work in the new ABAP editor

    Hi Gurus,
    It is quite strange that the "auto completion" doesn't work for me in my new laptop. After I press "ENTER", it starts a new line.
    Any body know this?
    Thanks a lot.

    Hello,
    Use "Tab" instead of "ENTER"

  • How do I enable auto completion for Java?

    I'm used to using Eclipse with its most excellent auto completion (ctrl-space). I also like the macro capability (type "main" then ctlr-space to insert a main block of code). Is there a way to do this in XCode? How do I enable it?
    Thanks,
    Alfredo

    Hi Alfredo
    This feature is available in the version 2.2 of Xcode for Tiger. You just turn it on in the Preferences setting.... however, I found it so annoying that I turned it off after a week or so! Perhaps you'll have better luck.
    Bob

  • ITunes 10.5 crashes every time I type in an auto-complete enabled field

    Greetings,
    I have my music collection on a NAS drive, and have recently upgraded my laptop and so moved the iTunes library files to the new machine.
    Both the old and new machines run Windows7 Home Premium 64-bit.
    While playing and syncing work well, I am unable to edit any auto-complete enabled field in a track's (or track group's) properties (e.g. artist, album) without having the iTunes application crash immediately.
    I am able to edit these fields only by pasting from an external editor (e.g. open notepad, write the new content, copy, switch to iTunes and paste).
    I have tried a complete uninstall of iTunes (including apple program support), but the issue recurred after iTunes was re-installed.
    Any help will be appreciated.
    Best regards,
    ShaiB

    Greetings,
    I have my music collection on a NAS drive, and have recently upgraded my laptop and so moved the iTunes library files to the new machine.
    Both the old and new machines run Windows7 Home Premium 64-bit.
    While playing and syncing work well, I am unable to edit any auto-complete enabled field in a track's (or track group's) properties (e.g. artist, album) without having the iTunes application crash immediately.
    I am able to edit these fields only by pasting from an external editor (e.g. open notepad, write the new content, copy, switch to iTunes and paste).
    I have tried a complete uninstall of iTunes (including apple program support), but the issue recurred after iTunes was re-installed.
    Any help will be appreciated.
    Best regards,
    ShaiB

  • Java editor for Linux

    Which is the best java editor for Linux ??
    in the Win plataform I'm using the JCreator ... and now I'm migrating to the linux plataform...
    please tell me the name of the editor you are using if you use Linux... (Red Hat 7.1 here...)

    you can try SciTE from http://www.scintilla.org - it's simple, fast and good enough. you can work with java, c and many other programming languages. There are some features that don't present in any other editor.
    Btw SciTE is only editor, not complete IDE. If you wish a full IDE with projects.. etc you can use Borland's JBuilder

  • Using Emacs as Java editor

    Hello
    I suppose that most of you use Eclipse development platform. But I recently installed Emacs as Java editor.
    I don't find one thing : How to activate the code completion ?
    For example : I begin to type JF and by pressing TAB, it fills JFrame
    thanks
    bye

    Ctrl-Meta-/
    (Alt instead of Meta on keyboards without Meta).
    Ctrl-H a compl will list all commands to do with completion
    Last time I saw any stats, emacs was still ahead of Eclipse in popularity, but it wasn't important enough to me to remember what the article was.
    (normally I use ArmedBear J <http://armedbear.org>, then emacs if it's not available, and JBuilder about once a month for step-wise debugging)
    Pete

  • Auto-complete not working on variables/functions within a class in FlashBuilder 4.5

    Hi all,
    I'm using Flash Builder 4.5 (not burrito), and I'm not getting auto-complete on variables or functions within the class I'm working in.  It will auto-complete classes, and even variables within another variable, but not a variable within that class.
    As an example, let's say I have a class with this var:
    private var myDate:Date = new Date();
    If I start typing myD, I can't get myDate to autocomplete.  But once I type myDate., I'll get auto-complete for all the variables/functions in the Date class.
    I've tried re-installing FlashBuilder and switching workspaces, but with no luck.
    Also tried creating a brand new test project, but it didn't work there either.
    Anyone have any ideas what might be wrong?
    Thanks!

    Hi,
    After you type "myD" If u press cntrl + space it should auto-complete to myDate. Please raise a bug in http://bugs.adobe.com/flex with the sample project as i am not able to reproduce.
    On the other hand if you were expecting code hint to show up as soon as you type "myD" (without pressing cntrl+space) , Please follow the below step.
    Go to Window -> Preferences -> Flash Builder -> Editor
    check the "use additional custom triggers" check box. Leave the keys as default value .
    That should work for you .

  • How to implement auto complete using swings?

    Hi all ,
    i have got a new assignment where I have to implement auto complete. Please suggest me the possible ways to do so. I am working on desktop application.
    Please help.
    Thanks
    Alex

    Till now i have tried this:-
    public class AutoCompletePer extends JFrame
         private JTextField field = new JTextField(40);
         private JFrame frame1 = new JFrame();
         private boolean showAutoComplete = true;
         public AutoCompletePer()
              setSize(500,300);
              setLocation(300,50);
              setLayout(new FlowLayout());
              getContentPane().add(field);
              setVisible(true);
              setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
              addListeners();
         private void addListeners()
               field.getDocument().addDocumentListener(new DocumentListener() {
                public void removeUpdate(DocumentEvent e)
               public void insertUpdate(DocumentEvent e)
                     if(showAutoComplete)
                          SwingUtilities.invokeLater(new Runnable() {
                        public void run()      {
                        Point p = field.getLocationOnScreen();
                           frame1.setBackground(Color.white);
                        frame1.setSize(field.getWidth(), 200);
                        frame1.setLocation(p.x ,p.y+20);
                        frame1.setVisible(true);
                        frame1.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                        JPanel panel = new JPanel(new BorderLayout());
                        panel.setBackground(Color.WHITE);
                        panel.add(new JLabel("i am label"));
                        frame1.getContentPane().add(panel,BorderLayout.CENTER);
                        showAutoComplete = false;
                        requestFocus();
                        field.requestFocus();
                          public void changedUpdate(DocumentEvent e) {
         public static void main(String[] args) {
              new AutoCompletePer();
    }I tried this but it doesn't work atleast frame should remain infront of the main window, even I tried with dialog box but all in vain.
    Please suggest if there is any API defined for this in Java or any other wayOut.
    Please help.
    Alex

  • Editing the auto complete dictionary?

    Hello All, Was wondering if there's a way to edit the auto complete dictionary on the E6/Symbian ^3/Symbian Anna? There is an auto complete dictionary editor available from Beta labs, but is incompatible with the E6. I seem to remember that the trick in earlier versions of Symbian phones was to connect the phone in USB mass storage mode and then edit a file. Don't remember the name of the file at the moment. Does any one remember this? Thanks!
    Present: Lumia-820
    Past: E6, L-800, N8, N900, 5800 XM, 6500 Slider, 6303c

    @abjbhat
    There is always choice of deleting predic folder and restart to make it build from scratch.
    As regards editing here is post appertaining to S60 3rd FP1 device for what it's worth:/t5/Nseries-and-S60-Smartphones/Predictive-Text-Li​brary-how-to-delete-a-word/m-p/118755/message-uid/​...
    Happy to have helped forum with a Support Ratio = 42.5

  • Java Editors? (JCreator, Eclipse,...)

    Does JCreator offer a compiler that has the code completion (like MS intellisense)? If so, is it in the free version or do you have to purchase it in as one of those additional features? I think that's what I like so much about J++ is that it has the intellisense to help speed up the coding process.
    Also, what are some great features about Eclipse that make it such a great java editor?
    Thanks...

    Hello stevebju,
    Have you looked at Forte for Java. I do have the code completion feature that you are interested in. The CE version is a free download.
    -Merwyn,
    Developer Technical Support,
    http://www.sun.com/developers/support.

  • When will DW support decent OOP/auto-completion IDE features?

    Hi DW friends,
    does anyone know when DW becomes worth its price?
    Even open source projects support PHP and ASP coding
    features, like
    auto-completion, OOP, etc.
    I would love some feedback, and also insider knowledge ;-)
    Kind regards,
    Franz Marksteiner

    I dought there will ever be a development environment like UDS/Forte 4GL. The only one that came close was SynerJ but that now is our of the picture because Sun decided not to support it. Forte 4 Java is almost there but lacks a lot of feature like partiton workshop to make it a good tool to use.

  • XCode 2.2 auto-complete not detecting type casting...

    Hello all,
    Pardon my lack of appropriate terms, but I need some help. I recently upgraded from XCode 2.0 to XCode 2.2 and have noticed an anomoly in behavior.
    In XCode 2.0, I could type-cast an unknown variable implicitly and XCode would use its auto-completion for the class I type-casted. For example, trying to find the count of an array called from a dictionary:
    [[myDictionary objectForKey: @"myArray"] count];
    After closing the inner brackets and trying to find the appropriate methods of NSArray (ie, I hit ESC to see my auto-complete options), XCode is obviously labeling this variable as "id" because it doesn't know what the objectForKey is going to retrieve. In XCode 2.0, I could do the following:
    [(NSArray *)[myDictionary objectForKey: @"myArray"] count];
    Doing this, XCode knew I was expecting an NSArray, and would auto-complete with only the NSArray methods. Now under XCode 2.2, the auto-complete seems confused by this type-casting, and does not list NSArray methods, and doesn't even list id methods, but instead lists what appears to be global and instance variables, not methods at all.
    It compiles properly and the app runs properly, so it seems only the auto-completion is confused. Does anyone know how to fix this back to XCode 2.0's style?
    (BTW, this was a simplified example, I often use the technique with custom classes)
    Thanks in advance.

    My settings appear to be correct. I even trashed the com.apple.xcode.plist file and trashed the .mode file in my xcodeproj to reset everything and still no go.
    Code-sense settings:
    Indexing:
    [X] Enable for all projects
    Editor Function Pop-Up:
    [X] Show Declarations
    [ ] Sort list alphabetically
    Code Completion:
    [X] Indicate when completions are available
    [X] Show arguments in pop-up list
    [X] Insert argument placeholders for completions
    Automatically Suggest: Never (I use ESC when I need suggestions)

  • Visual J++: auto completion

    Hello,
    I would like to know how do you make Visual J++ read auto-completion of one's own packages....
    Basically I have a com/companyname folder which has all the classes in them...
    when type into visual j++ import com. in the auto completion box i get ms in the dropdown for auto-completion...what I want to know is how do I get my companyname package into that auto completion box? or get Visual J++ to read autocompletion for 3rd party packages.
    Thanks for your help in advance.

    first of all thanks for the reply..
    well it does to auto complete for my files that i am currently working on and compile..
    but what i want to know is i have a seperate com folder located outside of interdev.. i want that package to be picked up..
    basically what i am asking is where should i place the com folder under visual j++ so it picks up that package for any application just like java and ms are pre-installed packages..

  • Auto Complete Combo Boxes?

    Does anyone know of auto-completing combo boxes written in Java? I have a dirty hack that sort of works, but if you type too fast the caret jumps to the end of the text it thinks you are typing instead of selecting the characters that you haven't typed yet.
    Any help would be greatly appreciated.

    Jrabi,
    Below is the code for KComboBoxes. Please be aware that this code comes with NO guarantee. It works for me, but that doesn't necessarily mean that it will work for you. If you have any questions about the code I will be happy to answer them. Make sure that once you create an instance of KComboBox that you set it as editable or the auto complete function won't work.
    package pubprint; //make this package whatever your package is
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    * Title: <BR>
    * Description: <BR>
    * Copyright: Copyright (c) 2002<BR>
    * Company: <BR>
    * @author Kevin J. Keen
    * @version 0.5
    public class KComboBox extends JComboBox implements KeyListener {
    private ComboBoxModel myModel;
    private KeySelectionManager myKeyManager;
    private ComboBoxEditor myEditor;
    private JTextField txtEditor;
    private long timeOfLastEvent = 0;
    //Constructors
    public KComboBox() {
    super();
    myModel = super.getModel();
    myKeyManager = super.getKeySelectionManager();
    myEditor = super.getEditor();
    txtEditor = (JTextField)myEditor.getEditorComponent();
    txtEditor.addKeyListener(this);
    public KComboBox(ComboBoxModel daModel) {
    super(daModel);
    myModel = super.getModel();
    myKeyManager = super.getKeySelectionManager();
    myEditor = super.getEditor();
    txtEditor = (JTextField)myEditor.getEditorComponent();
    txtEditor.addKeyListener(this);
    public KComboBox(Object[] items) {
    super(items);
    myModel = super.getModel();
    myKeyManager = super.getKeySelectionManager();
    myEditor = super.getEditor();
    txtEditor = (JTextField)myEditor.getEditorComponent();
    txtEditor.addKeyListener(this);
    public KComboBox(Vector items) {
    super(items);
    myModel = super.getModel();
    myKeyManager = super.getKeySelectionManager();
    myEditor = super.getEditor();
    txtEditor = (JTextField)myEditor.getEditorComponent();
    txtEditor.addKeyListener(this);
    //Key listener methods
    public synchronized void keyReleased(KeyEvent e) {
    if(e.getKeyCode() == KeyEvent.VK_SHIFT || e.getKeyCode() == KeyEvent.VK_TAB) {
    return;
    //This IF/ELSE is necessary because without it
    //you can out-type the auto complete and get
    //really weird behavior.
    if((e.getWhen() - timeOfLastEvent) < 100) {
    return;
    else {
    timeOfLastEvent = e.getWhen();
    String temp = txtEditor.getText();
    int hashCode = temp.hashCode();
    for(int i = 0; i < myModel.getSize(); i++) {
    String contents = (String)myModel.getElementAt(i);
    if(contents.startsWith(temp)) {
    int selectionStart = txtEditor.getCaretPosition();
    int selectionEnd = (contents.length());
    //Check to make sure that the value in the text field hasn't changed
    if(txtEditor.getText().hashCode() == hashCode) {
    setSelectedItem(contents);
    selectedItemChanged();
    txtEditor.setSelectionStart(selectionStart);
    txtEditor.setSelectionEnd(selectionEnd);
    return;
    else {
    return;
    public void keyPressed(KeyEvent e) {}
    public void keyTyped(KeyEvent e) {}
    }

  • Text-input component with auto-complete functionality for mobile

    Hey guys,
    I wonder if there is a text-input component with auto-complete functionality optimized for mobile development with AIR like the one that Android provides natively as you can see here http://developer.android.com/reference/android/widget/AutoCompleteTextView.html and here http://developer.android.com/resources/tutorials/views/hello-autocomplete.html.
    At least I didn't find it in the latest SDK and I think such a component is pretty standard nowadays. Or did I simply overlook it?
    Thank you guys for any advice.
    Regards,
    Thilo

    Hi relaxtraja,
    thanks for your reply!
    I knew that there are a lot of auto-complete scripts on the web. What I was hoping was, that Adobe provides an officially supported auto-complete component optimized for mobile as part of the SDK (like in the Android SDK as I pointed out), but that doesn't seem to be the case. It's sad, because it's an essential part of modern UIs in mobile applications.
    I've already created an auto-complete component by myself based on Spark components and I will end up using it. But I will have to optimize it for mobile applications beforehands. I just think something this essential should be provided by the SDK.
    However, thanks for posting!
    Regards,
    Thilo

Maybe you are looking for

  • Adding new item to a result page for customer search

    Hi all, I have the following requirement : In Sales Dashboard,once the user queries for customer, the result table shows name, registery id, address and some other fields. I have to add another column 'Account Number', which will display customer num

  • Copy new attributes in new releases

    Could you please provide detailed steps using WCF_CC or manual process of new attributes in CRM 7.0 EhP1? I'm working on message in UI Configuration check in WCF_CC which states, "Context node Attribute does not exist: STRUCT.ZZFIELD in Object type B

  • Webdynpro standard app is failing to change description accord to sort code

    Hi Gurus, I have an issue in standard webdynpro application Personal Information->Bank Information-> If I change the sort code of the bank account it should display the bankname which is associated with the particular sortcode. but its not happening

  • Integration of OBIEE 10.1.3.4.1 with Oracle Powerbuilder

    Hi.. Currently we are having the integration of OBIEE with Oracle Powerbuilder for displaying the reports developed in OBIEE. For displaying the Answers in Powerbuilder, the integration technique is not working. Please help me. Edited by: user1073817

  • How to add in the profile

    hi to all this is our requrement parameter: abap/fieldexit, value YES how to add my parameters field regarding raghu bhupathi.