Looking for simpler ide tools

i am currently using the netbeans and find it too complicated for me and it takes a lot of resources.
Could somebody please suggest me what ide i should use?
I need the function of displaying a drop-down list of all the methods available for the object that I am referring to.....
for example.....
String s="abcde";
System.out.println(s. <<the moment that i type the dot, i want the ide to display a list of all methods available for the String s.....
Any suggestions?
Thanks~~~~~~!

Eclipse is a full blown IDE..it supports many features (mos of which you probably don't use), and other stuff you probably didn't noticed...like writing a Class..and not needing to compile it (cause it does this while you're writing the code..and checking for error as well.)
JCreator is small..because it's a lightweight editor..it supports very few basic features (which most developers uses). noticed that they don't have a debugger (at run time)..auto-complete, code generation (well..some of these features are in their PRO version)
Also, Eclipse was designed to supports pluggin, different programing languages

Similar Messages

  • Looking for GUI building tool

    I am looking for recommendation on tools to build GUI
    Specifications:
    Should be as much as like the visual studio tools
    Use drag and Drop
    Have the options to edit components and their parameters from gui (like visual studio) instead of in the code
    I want the Code to be in Model-view-controller pattern, using different classes to implement the pattern
    I want to have lot of options to edit the apearnce
    any ideas?
    Thanks
    Edited by: Yuval_s on Jan 15, 2009 4:32 AM

    Yuval_s wrote:
    But my company software has hundreds of dialogs\forms, it will save us time.Just my opinion, but no it won't. We don't have "hundreds" of dialogs/forms on our project, but we have several dozen - many of which have very complex layouts. When you understand the code and can do it by hand, you'll find that it's far quicker to edit manually vs. a gui editor. This is just my opinion based on my own experience, but I do it everyday for a living.
    Now i am writing in MVC way that the dialog and the controller are in different classes and i didn't find good tool that generate code like this.We also have the "logic" split out of the gui code. I don't know of any code-generator that does this for you. All the more reason to know how to do it by hand.
    think about it like you need to write now code for hundreds windows in short time...I already do.
    I suspect that a majority of the regulars in this forum who code Swing for a living don't use a gui editor. Just a guess, though.
    Good luck.

  • Looking for bright ideas for moving address book from MacBookPro that can't be upgraded from OS 10.5.8 (big bummer!) to iCloud and iPad2

    Looking for bright ideas for moving address book from MacBookPro that can't be upgraded from OS 10.5.8 (big bummer!) to iCloud and iPad2

    Have you tried exporting the contacts from address book on your mac to your desktop and importing them into the iCloud contact file using the import command from the menu when you select the gear icon.

  • Looking for an idea to call action listner or other way to call java code

    Hi
    I'm building some project on JSF2
    I'm Looking for an idea to call action listner or other way to call java code from link(not commandlink)
    and i got a sign out button which i want to invalidate the session when its clicked...
    i cant do a redirect to a jsp... its a "special" link that does the log out , so i cant use the link for the session invalidation
    I dont want to use commandLink cause i need to put it into a form, and i don't to make my code uglier...
    any ideas?
    Im using JSF 2 (new to it)

    Under the constraints you have given the only thing I can think of is some kind of "pretty url" technique combined with JSF. Google can help you out. (Although that might be overkill for what you need.)
    Other than that I think you are looking at straight Java or JSP solutions that do not involve JSF.

  • Looking for simple timeline/calendar screenlet/widget.

    Good day gentlemen,
    I'm looking for a simple screenlet or widget for linux that is a calendar, but designed to be more of a timeline of past events than a reminder of future events. For my specific purpose in this case I'm trying to lose weight. So I'm seeking an application to record my previous weight and other notes about what i ate, and how much and what kind of nutrients i had that day. I would like to keep it in a calendar or timeline like format. Something easy to the point where if my buddy asked me how much i weighed last week or what i did last week, i can simply click on the date and all my notes appear about my weight, and what i ate, etc. Also simple to input data like clicking on the date and entering a note about that day. Something easy to use and sort of integrated into the desktop such as a screenlet or widget, so I don't have to open up a separate window to view these records. I did a little research and was able to find a few things, Rainlendar being one of them. But I feel most of what i found are way more complicated for my purpose. Would any of you happen to have any suggestions on what application would most suit my purpose in its most simplistic form? thanks in advance for your kind and prompt response
    Sincerely,
    Sicariuxs

    There are, apparently, quite a variety of tools just for this purpose.  here's one.  That was just the first one up from a search, I don't actually know anything about it.  But overall, I'd suggest you actually narrow your search as there are tools targetted specifically for such goals.

  • Looking for SIMPLE time tracking app

    Hi all
    I'm looking for a really simple 'retrospective' time sheet app - wondering if anyone knows one?
    I've seen literally hundreds, but they all want you to 'click to start the clock' and then click to end it. This doesn't work for me, as I spend only about 25% of my time in front of the computer.
    What I'm looking for is something that I can put all my client contacts in, then separately link projects to those clients. Then at the end of each day I can quickly recall what I did during the day and assign time to each project.
    Most apps want you to assign time to each project as you go through the day, so its relatively painless to switch projects. However when you do it all at the end of the day, you don't want to keep entering the date, you just want to enter the start/end time, and what project it was. More like a journal entry I guess.
    Then at the end of the month it would print a report that groups the hours worked on each project so that you can review them and create an invoice (or in my case send to my accounts clerk who makes the invoice for me).
    Any ideas from anyone would be greatly appreciated.
    Thanks!

    Hi shannonbray, welcome to the AppleWorks forum, which is intended for discussions of Apple's now-legacied productivity suite called AppleWorks.
    One could develop such a template using the spreadsheet or database modules of AW separately or in combo,but it doesn't sound as if that's your aim. I'm sure clever types have done such things, and perhaps shared them to the AWUserGroups and such, and I hope they note your post and reply. There are certainly numerous clever folks who follow this forum, and they may have pointers to other apps for you, but essentially I think you've posed the wrong question in the wrong place.

  • Looking for simple search example using SELECT

    Can anyone link me to an example of how to create a basic search page where the search criteria is selected in a drop-down list (<SELECT> in HTML)?
    Here's where I'm coming from so you have a better idea of what I'm trying to do. I've created a search page by creating a method in my App Module java class using setWhereClause(), then dropped my view onto my web page as a read-only table, and finally dropped the method and parameter as a command button and input text field, respectively. This works fine, but I'd like to replace the input text field with a select box so that the users will not have to type in their search criteria. I'd like to populate the drop-down with data from a table, which will then be sent as the argument for the method.
    I can create a ViewObject that contains the data I need, but I'm not sure where to go from there. I don't know how to create the drop-down list or connect the command button to the list. (Ultimately, I'd like to have the search text submitted when the drop-down changes, but I'll settle for pressing the button for now). I've fooled with using the LOV component, but without any luck.
    Step-by-step would be great, but if you can point me to an example, some documentation, etc., that would be great too.
    Thanks,
    Andy

    Excellent - Thanks for the link to the sample code page. I thought I had seen all the tutorials, etc. but for some reason never came across this page. The example you cited looks like it's just what I'm looking for.
    (Edit - For anyone who's interested, here's a step-by-step for creating a databound drop down list:
    http://www.oracle.com/technology/products/jdev/tips/mills/databound_lists.html )
    Andy

  • Looking for Simple JSTL Example

    Hi Everyone,
    I'm looking for an example of a simple Web application that uses "JavaServer Pages Standard Tag Library" (JSTL) -- that doesn't use JDeveloper!
    I have OC4J stand-alone 10.1.3.0.0 on Microsoft Windows XP Professional Version 2002 Service Pack2 with JDK 1.5.0_07
    I created and packaged a J2EE application in a EAR file. The EAR file contents:
    META-INF/application.xml
    frstjstl.warContents of "application.xml"
    <?xml version="1.0"?>
    <application
           xmlns="http://java.sun.com/xml/ns/j2ee"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/application_1_4.xsd"
           version="1.4">
      <module>
        <web>
          <web-uri>frstjstl.war</web-uri>
          <context-root>frstjstl</context-root>
        </web>
      </module>
    </application>Contents of "frstjstl.war"
    META-INF/MANIFEST.MF
    index.jsp
    WEB-INF/lib/standard.jar
    WEB-INF/web.xmlContents of "web.xml"
    <?xml version="1.0"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
             version="2.4">
      <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
      <jsp-config>
        <taglib>
          <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
          <taglib-location>/WEB-INF/lib/standard.jar</taglib-location>
        </taglib>
      </jsp-config>
    </web-app>Contents of "index.jsp"
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <html>
      <head>
        <title>Simplest JSTL</title>
      </head>
      <body>
        &lt;h1>Simplest JSTL</h1>
        <c:forEach var="httpRequestHeaders" items="${headerValues}">
          ${httpRequestHeaders.key} = ${httpRequestHeaders.value}
        </c:forEach>
      </body>
    </html>My JSTL implementation comes from here:
    http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html
    The distribution contains a "standard.jar" file and a "jstl.jar" file (among other things). The "standard.jar" file is included in my WAR (see above) and I have copied the "jstl.jar" file to:
    %J2EE_HOME%\jsp\lib\taglibI launch OC4J from the command prompt like this:
    java -jar oc4j.jarI deploy my EAR using the following command:
    java -jar admin.jar ormi://localhost oc4jadmin xxx -deploy -file frstjstl.ear -deploymentName FirstJSTL -bindWebApp default-web-siteThen I launch my Web browser and enter the following URL:
    http://localhost/frstjstlAnd I get the following error message:
    500 Internal Server Error
    OracleJSP: oracle.jsp.parse.JspParseException: /index.jsp: Line # 8, <c:forEach var="httpRequestHeaders" items="${headerValues}">
    Error: Attribute: items is not a valid attribute nameThanks (for reading),
    Avi.

    Thanks Qiang.
    Yes, when I copy file "index.jsp" to directory "%J2EE_HOME%\default-web-app\testJstl.jsp" it works.
    I use the following URL:
    http://localhost:8888/testJstl.jspAnd this is the output I get:
    [Format modified to be more suitable to post on this forum.]
    Simplest JSTL
    CONNECTION = [Ljava.lang.String;@7348e
    USER-AGENT = [Ljava.lang.String;@10b8d03
    ACCEPT-LANGUAGE = [Ljava.lang.String;@157011e
    ACCEPT-ENCODING = [Ljava.lang.String;@10a8143
    ACCEPT = [Ljava.lang.String;@ac8360 HOST = [Ljava.lang.String;@1e534cb
    [/pre]
    But I guess, since the JSTL related JAR files are part of the default Web application, there is no reason it shouldn't work.
    That's why you said:
    Let us do a sanity test first.So now what?
    (And, by the way, thanks for your help.)
    Cheers,
    Avi.
    Message was edited by:
            Avi Abrami                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Looking for Simple Password App

    I'm looking for a simple, secure, free app to store my passwords in. I did a google search and there are hundreds out there. I'd like to use one that someone here has had experience with. I don't want anything sophisticated or something that syncs. Just something to store my passwords on my iphone.
    Thanks, Dick

    Put the Library on an encrypted disk image. Unless Mom is a serious computer head she'll not know what you've been up to.
    Regards
    TD

  • Looking for some ideas for setting up and xServe RAID

    Everyone,
    Here is what I would to do. I have a new xServe and 7TB RAID. I would like to set all of my end users up with Portable Home Directories. They all have laptops and I would like to use their PHD as my backup source. I would set them to sync in the background a couple of times per day and then write to tape at night.I have about 60 end users. I would also like to use the same xServe and RAID as my Kerio mail server and mail store. What I am looking for is some ideas of how to go about setting up the RAID. I was orginially thinking of setting up as one big RAID 5 using all 14 drives. What I would like to know is what is the number of drives that would need to fail that would render the RAID unrebuildable? I am now thinking about splitting the RAID into two 7 drives in RAID set up as RAID 1+0.
    I am not sure if I phrased a lot of this currently, but here is quick recap of what I would like to know. What would be the best way to set up a 7TB RAID to store PHD and my Kerio mail store that provides me the most redudant and fastest acccess.
    Thanks in advance.
    Sincerely,
    Daniel Krajc

    Daniel,
    I'd suggest a 6 disk RAID 5 plus a hot spare for each side. It will give you about 2.4 TB capacity per side (4.8 total), and it can tolerate 2 drive failures per side without losing data, provided there is sufficient time between failures for the RAID set to automatically rebuild on the hot spare. This window is 8-12 hours.
    Note with Xserve RAID the two sides are totally independent in the data path -- it will look like 2 separate LUNs. If you want to combine these at the host level, as RAID 0 or RAID 1 to look like a single volume, you can. But the Xserve RAID will not combine them itself... the RAID controllers are independent... it might as well be two separate RAID volumes in the same chassis.
    I assume you'll plug this into an Xserve that is serving as an Open Directory server and a file server?

  • Looking for Simple Archiving Catalog Software

    I  have previously used AutoCat. Simply drag and drop a folder and AutoCat copies
    the folder hierarchy and makes aliases of all the files. I keep this a catalog to
    be able to simply find all of my files by a search through the finder. It tells
    me the archive number of the disk where I can find a particular project. Very
    simple, very legant. Not supported in Lion so I'm looking for a replacement.

    Touvaly serves the same function as AutoCat. But it goes too far. It makes a "vrtual copy" of a removable disk. It is so hard to tell if you've pulled up real files and folders or the fake ones! - Somebody PLEASE bring back AutoCat!

  • Looking for Simple report

    Hi All
    Hope u are doing well
    I was looking a simple report which gives me celar picture of the stages
    Sales oder no, Invoice numberNo, if on production production ordernumber due date of production order and po invoived to get the production done and trceiving date of POs for the same
    Kindly revert with the best possible option
    Have a nice day
    Kind regards,

    Dear Mona,
    The requirement you have putted on your report is very much complex.As per your scenario this one is only possible when you guys are following the base document otherwise this report is not possible
    Regards,
    Kumar

  • Looking for simple waveform filter

    I am using E series board using single ended input to collect 16 channels of constant value data, (ie 10volts). The data has a small amount of noise and outlying data points which I need to remove. I am attempting to implement a simple low pass filter. I attempted the Buterworth and FIR filters. The code I have attempted based upon the help examples unbundles the waveforms, filters the data, and rebundles the waveforms. This produces a discontinuous waveform when ploted. Addtionally the filtered data looks like a sine wave with an amplitude ranging between zero and the bias of the constant input data dependent upon the input parameters fo the filter. I'm looking for an example code that filters a constant signal with outlying da
    ta points and small amount of noise. I cannnot use a average because the outlers are all on one side of the average value and will bias my data.
    Thanks for the assistnance
    Brian Wells
    Space Research Institute
    Auburn University, AL

    Brian,
    Can you try a running average using shift registers? With this, if the latest point is over x% outside of the running average, then do not include it. Since your signal is "constant," then frequency filters will probably not help you. See the attached example in LabVIEW 6.0.2. The interesting part of this example is that you need to know what your expected value is. If this is unknown, then one must do a bit of statistics (probably through histogramming) to get an initial average value.
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://www.ni.com/ask
    Attachments:
    Remove_Outliers.vi ‏62 KB

  • Looking for simple gmail tray notifier for fluxbox

    As said: I'm looking for a really simple tray notifier that supports gmail, and it needs to work in fluxbox. I'm having no luck with the package search, since with most stuff I can't tell if it'll work with gmail.

    skymt wrote:How is it broken? It works for me.
    For me, not so much. Judging by the comments in the AUR, it seems I'm not the only one.
    $ checkgmail /usr/lib/perl5/site_perl/5.8.8/i686-linux-thread-multi/Gtk2.pm line 62.
    Warning: Crypt::Simple not found ...
    Warning: Crypt::Blowfish not found ...
    Warning: FreezeThaw not found ...
    CheckGmail requires the above packages for password encryption
    Please download and install from CPAN (http://search.cpan.org) if you want to use this feature ...
    XMLin() requires either XML::SAX or XML::Parser at /usr/bin/checkgmail line 3603
    A thread exited while 2 threads were running.

  • Looking for simple touch-to-command utility

    More and more people are using laptops these days, but the number of utilities providing extra touch functionality seems still lacking. I'm looking for a simple utility that will let me bind (multi-) touch gestures to keybindings, and preferably also commands.
    For instance:
    2-finger swipe-left > Mod1-arrowleft
    3-finger swipe-up > exec dmenu_run
    Does anyone know of such a utility?

    litemotiv wrote:
    More and more people are using laptops these days, but the number of utilities providing extra touch functionality seems still lacking. I'm looking for a simple utility that will let me bind (multi-) touch gestures to keybindings, and preferably also commands.
    For instance:
    2-finger swipe-left > Mod1-arrowleft
    3-finger swipe-up > exec dmenu_run
    Does anyone know of such a utility?
    Hey litemotiv,
    Easystroke will do that. I use it with my stylus/tablet to execute apps, commands, text, (ie: passwords, signature, etc), key-bindings, etc... While easystroke <upstream version> isn't multi-touch, there does happen to be a multi-touch version - but as a disclaimer ~ i haven't actually used the MT version. However, here is a link to the blog about it (english translation);
    http://translate.google.com/translate?u … 1&ie=UTF-8
    It's also in the AUR;
    http://aur.archlinux.org/packages.php?ID=54495
    let me know how it works out! (i plan on going multitouch soonish)
    cheerz
    Last edited by triplesquarednine (2012-01-14 21:41:09)

Maybe you are looking for