157
votes
5answers
39k views

'Must Override a Superclass Method' Errors after importing a project into Eclipse

Anytime I have to re-import my projects into Eclipse (if I reinstalled Eclipse, or changed the location of the projects), almost all of my overridden methods are not formatted correctly, causing the ...
146
votes
26answers
21k views

Useful Eclipse Java Code Templates

You can create various Java code templates in Eclipse via the Window->Preferences->Java -> Editor -> Templates e.g. sysout is expanded to: ...
134
votes
8answers
23k views

Why should I bother about serialVersionUID?

Eclipse always warns me about serialVersionUID. What is this, and is this a matter of high importance? Is there any example where missing serialVersionUID will cause a problem?
121
votes
39answers
22k views

Things possible in IntelliJ that aren't possible in Eclipse?

I have heard from people who have switched either way and who swear by the one or the other. Being a huge Eclipse fan but having not had the time to try out IntelliJ, I am interested in hearing from ...
98
votes
74answers
24k views

Hidden features of Eclipse [closed]

Alright it can be a lame question, but everybody uses these things differently. What's some of the best time savers out there for this IDE. Tom
86
votes
12answers
109k views

Best GUI designer for eclipse? [closed]

I'm looking for a good GUI designer for swing in eclipse. My preference is for a free/open-source plugin.
63
votes
9answers
20k views

Which has better Eclipse support: git or Mercurial

I work in a team of Java-developers who are very familiar with Eclipse. Most of the team uses Windows. We are switching our main project from CVS into something newer. Subversion seems already old and ...
63
votes
5answers
12k views

What does $NON-NLS-1$ mean?

In Eclipse source code, I've found some '$NON-NLS-1$' in comments used like that : private String toolTip = ""; //$NON-NLS-1$ What does that mean ?
61
votes
10answers
51k views

What is your favorite automatic class diagram generator for Eclipse? [closed]

I am looking for an automatic class diagram generator in Eclipse. It will look at a project and automatically create a class diagram without needing to run the code. What is your favorite class ...
61
votes
3answers
22k views

Eclipse/Java code completion not working

I've downloaded, unzipped and setup Eclipse 3.4.2 with some plugins (noteable, EPIC, Clearcase, QuantumDB, MisterQ). Now I find when I'm editing Java projects the code completion is not working. If ...
60
votes
5answers
10k views

Eclipse Optimize Imports to Include Static Imports

Is there anyway to get Eclipse to automatically look for static imports? For example, now that I've finally upgraded to Junit 4, I'd like to be able to write: assertEquals(expectedValue, ...
56
votes
9answers
15k views

Should a method that implements an interface method be annotated with @Override

Intro My real question is about the use of the annotation. Trying to find an answer myself, I ran into several other questions. This is why there are also related questions below. I hope this is not ...
48
votes
8answers
19k views

Eclipse : Class file name must end with .class exception in Java Search

I was hoping someone could help me out with a problem I'm having using the java search function in Eclipse on a particular project. When using the java search on one particular project, I get an ...
47
votes
8answers
72k views

How to set the java.library.path from Eclipse

How can I set the java.library.path for a whole Eclipse Project? I'm using a Java library that relies on OS specific files and need to find a .dll/.so/.jnilib. But the Application always exits with an ...
46
votes
11answers
5k views

Eclipse webtools project (WTP) and its performance / quality

Our company is using eclipse since several years now (we are using WTP since release 0.7) I am currently evaluating eclipse 3.6.2 with WTP 3.2.3 which should replace eclipse 3.4.2 with WTP 3.0.4 as ...
46
votes
13answers
26k views

How do I prevent Eclipse from hanging on startup?

I am using Eclipse 3.3 ("Europa"). Periodically, Eclipse takes an inordinately long time (perhaps forever) to start up. The only thing I can see in the Eclipse log is: !ENTRY ...
41
votes
10answers
40k views

Eclipse error: This project needs to migrate WTP metadata

We started a Web Project in Eclipse 3.2 a ways back and we've since upgraded to Eclipse 3.4 but now the Project has the error: "This project needs to migrate WTP metadata" We've tried right-clicking ...
39
votes
11answers
23k views

Which is the best Maven Eclipse plugin? [closed]

There is two available Eclipse plugins for Maven : Eclipse IAM (old name is Q4E) m2eclipse m2eclipse seems to be the oldest but the more robust. Is there any key differences between the two ? ...
39
votes
13answers
7k views

A Java API to generate Java source files

I'm looking for a framework to generate Java source files. Something like the following API: X clazz = Something.createClass("package name", "class name"); clazz.addSuperInterface("interface name"); ...
39
votes
11answers
15k views

Is there a Macro Recorder for Eclipse?

Anybody know of a good eclipse plugin for recording and playing back macros? I've tried this one, but it didn't do me any good- seemed like it wasn't ready for primetime. I know about editor ...
38
votes
8answers
26k views

Build Eclipse Java Project from Command Line

Is there a way to compile an Eclipse-based Java project from the command line? I'm trying to automate my build (using FinalBuilder not ant), and I'm neither a Java nor Eclipse expert. I can probably ...
37
votes
5answers
19k views

Maven GWT 2.0 and Eclipse

Does anyone know of a good guide for creating a project with the new 2.0 release of GWT using maven and eclipse? I am running into a lot of problems getting them to play nicely together. For what ...
35
votes
8answers
8k views

How to turn off the Eclipse code formatter for certain sections of Java code?

I've got some Java code with SQL statements written as Java strings (please no OR/M flamewars, the embedded SQL is what it is - not my decision). I've broken the SQL statements semantically into ...
34
votes
5answers
20k views

Programming Java 7 in Eclipse

I installed JDK 7 and Eclipse 3.6M6. Then, I added JRE 7 as a new JRE execution environment in Eclipse, and set the compiler compliance level to Java 7. I can compile the following piece of code ...
34
votes
12answers
3k views

Do you keep your project files under version control? [closed]

Do you keep project files like Eclipse's .project, .classpath, .settings under version control (e.g. subversion)?
33
votes
9answers
28k views

uninstall plugins in Eclipse 3.4.X

The GUI for managing plugins in Eclipse got a bit of an overhaul in version 3.4.0. This GUI is accessed via the "Software Updates..." option in the Help menu. This displays the following dialog: ...
32
votes
1answer
1k views

Why is IJavaProject.findPackageFragmentRoots returning an empty array?

Every time I call IJavaProject.findPackageFragmentRoots(IClasspathEntry cpe) and pass it an IClasspathEntry of kind CPE_PROJECT, it returns an empty list. I paused the debugger and ran the following ...
32
votes
6answers
10k views

Colorize logs in eclipse console

Is there a way to colorize parts of logs in the eclipse console. I know I could send to error and standard streams and color them differently but I'm more looking someting in the lines of ANSI escape ...
31
votes
20answers
28k views

Error: Unable to open class file R.java

Did a fresh install of Eclipse, JDK and android-sdk. I am currently receiving this error when creating a new project [2010-09-26 16:07:56 - Test] ERROR: Unable to open class file ...
30
votes
4answers
7k views

Paste a multi-line Java String in Eclipse

Unfortunately, Java has no syntax for multi-line string literals. No problem if the IDE makes it easy to work with constructs like String x = "CREATE TABLE TEST ( \n" + "A INTEGER NOT ...
30
votes
16answers
14k views

Is Emacs useful compared to Eclipse programming Java?

When working in an actual development environment with other people, is Emacs still a valid IDE? I work with Eclipse with my co-workers, but I'm curious if there are any benefits whatsoever of using ...
30
votes
6answers
19k views

java.io.Console support in Eclipse IDE

I use the Eclipse IDE to develop, compile, and run my Java projects. Today, I'm trying to use the java.io.Console class to manage output and, more importantly, user input. The problem is that ...
29
votes
4answers
17k views

Counting Line Numbers in Eclipse

I have a Java project in Eclipse with ~10 packages and ~10 class files per package. Is there a way to determine total lines of code for the whole project from within Eclipse? I am familiar with ...
29
votes
8answers
5k views

Any reason to clean up unused imports in Java, other than reducing clutter?

Is there any good reason to avoid unused import statements in Java? As I understand it, they are there for the compiler, so lots of unused imports won't have any impacts on the compiled code. Is it ...
29
votes
11answers
26k views

Good free UML tool for Java/Eclipse?

I'm looking for a free and easy-to-use UML diagramming tool for Java. In particular I'd looking for something that would integrate with Eclipse, as most of my codebase is in Eclipse. Any ...
28
votes
16answers
96k views

Eclipse - no Java (JRE) / (JDK) … no virtual machine

I am trying to get Eclipse Galileo to re-run on my computer - i have run it before with no problems but now i keep getting this error: A java Runtime Environment (JRE) or Java Development kit ...
28
votes
8answers
4k views

Using both Eclipse and NetBeans on the same project

Eclipse is a really great editor, which I prefer to use, but the GUI design tools for Eclipse are lacking. On the other hand, NetBeans works really well for GUI design. Are there any tips, tricks ...
27
votes
28answers
6k views

What is the best *free* IDE for Java programming?

There are two free IDEs for Java: Netbeans and Eclipse. Netbeans seems to have better auto-complete support and compile/debugging support. However, it lacks support for auto-completing ...
27
votes
7answers
2k views

Can I find out the return value before returning while debugging in Eclipse

Is it possible to see the return value of a method after the line has been run and before the instruction pointer returns to the calling function? I am debugging code I can't modify (read: don't want ...
27
votes
26answers
9k views

What is your favorite hot-key in Eclipse? [closed]

I've been using Visual Studio with Re-Sharper for the past few years and have recently taken a gig at a Java shop where we use Eclipse. Googling for Eclipse hotkeys has returned a bunch of 'Top 10 ...
26
votes
10answers
15k views

Any reason to prefer getClass() over instanceof when generating .equals()?

I'm using Eclipse to generate .equals() and .hashCode(), and there is an option labeled "Use 'instanceof' to compare types". The default is for this option to be unchecked and use .getClass() to ...
26
votes
4answers
12k views

Making Eclipse behave like Visual Studio

I'm doing some Android dev, and I much prefer Visual Studio, but I'll have to use Eclipse for this. Has anyone made a tool that switches Eclipse to look and behave more like visual studio? I mainly ...
25
votes
4answers
4k views

Why is eclipse trying to copy my .svn folders from src to bin, and how can I make it stop?

I have checked out a bunch of java code using subversion 1.6 and then I imported those projects into eclipse. Subclipse 1.6 picked up the fact that the plugins are under version control, except for a ...
25
votes
12answers
3k views

To check in, or not check in, the entire Eclipse project?

I'm soon going to check in the very first commit of a new Java project. I work with Eclipse Ganymede and a bunch of plug ins are making things a little bit easier. Previously I've been part of ...
24
votes
3answers
18k views

JDK on OSX 10.7 Lion

I've instaled the Java for Developer package provided from Apple for 10.7 and java apps are running fine but eclipse cannot find the JDK root path and I cant either. Anybody any ideas?
24
votes
4answers
44k views

Java Restful Web Service Tutorial with Eclipse and Tomcat

I was wondering if anyone could post or know of instructions on creating a simple restful web service with eclipse and deployed on tomcat.
24
votes
11answers
104k views

Eclipse memory settings when getting “Java Heap Space” and “Out of Memory”

When trying to launch and run a flex/java project in eclipse I kept getting a "Out of Memory Exception" and "Java Heap Space" using Eclipse, Tomcat and a JRE. While researching trying to adjust the ...
23
votes
4answers
963 views

What is the difference between javac and the Eclipse compiler?

I asked this in a comment, but figured it's a separate question: Is Eclipse's compiler just a wrapper around the same compiler core that the javac program is wrapped around, or is it a separate ...
23
votes
14answers
2k views

Eclipse: Should I create a workspace for each project?

I am simply wondering whether it is best to put all of my Eclipse projects into one workspace, or do a 1 workspace per 1 project. I am just a solo developer, for hobby more or less, but the apps I ...
23
votes
4answers
10k views

Bug in eclipse compiler or in javac?

The following code public class GenericsTest2 { public static void main(String[] args) throws Exception { Integer i = readObject(args[0]); System.out.println(i); } ...

1 2 3 4 5 147