eclipse

emacs color syntax configuration

Hi, Does anyone know if I can find an emacs color syntax configuration which resembles eclipse's syntax coloring? Thank you for any suggestion. ...

How to use wildcard in Ant's Available command

Hi all, I'm using an Ant build script to collate my Eclipse-based application for distribution. One step of the build is to check that the correct libraries are present in the build folders. I currently use the Ant command for this. Unfortunately, I have to amend the script each time I switch to a new Eclipse build (since the version...

How does one set up JavaDoc DocCheck as an Eclipse plugin?

I have recently started using DocCheck for checking the validity of JavaDoc's in code files. Is there some way to set DocCheck up as an eclipse plugin? ...

Include multiple jars with classpathentry

I have an eclipse's .classpath file that looks like this: <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="src" path="test"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="bin"/> <classpat...

Cross-platform source control?

We're doing development for both .NET (Using VS 2008) and Java (using eclipse) Currently, we're using CVS, but there isn't really a good plugin for Visual Studio 2008, so I'm looking at changing to something that has better support for VS 2008 and Eclipse. My initial thought was SVN, as it is really close to CVS, but I'm a bit tempted ...

Letterspacing in Eclipse code editor

Is there any way to change the letter-spacing of text in Eclipse's code editor? ...

How to debug SCons scripts using eclipse and pydev?

I'm a newbie to SCons and also using pydev. Can someone help me with instructions on how to debug scons scripts using Eclipse and pydev? Is it even possible considering the fact that SCons is a seperate app and not an extension to python? ...

Using Eclipse for Intellij Idea projects

I like Eclipse and I want to use it, the problem is that I can't figure out a simple and fast way to configure projects once checked out from svn. All projects I work with have several modules and are configured with a top folder which contains four folders: the build output, libs, main and profiles. In detail: libs contains comp...

.class file from jython with pydev

My first attempt at jython is a java/jython project I'm writing in eclipse with pydev. I created a java project and then made it a pydev project by the RightClick project >> pydev >> set as... you get the idea. I then added two source folders, one for java and one for jython, and each source folder has a package. And I set each folder a...

How to get API Tooling to work in Eclipse

I have been having a real hard time getting API Tooling to work in Eclipse 3.4.2. It keeps telling me: The minor version should be incremented in version 3.4.0.qualifier, since new APIs have been added since version 3.4.0.40001 That being said, I have generated the plugins that are used for the baseline from the exact same code th...

Java Documentation Override Method does not InheritDoc

A method that overrides another method does not inherit documentation of the method it is overriding. Is there any way to explicitly tell it to inherit the documentation? /** * {@inheritDoc} * * This implementation uses a dynamic programming approach. */ @Override public int[] a(int b) { return null; } ...

Configure project in eclipse so that it ends up in the tomcat "common" class loader

I have two tomcat web applications that need to share information using a singleton. I have already made it work by placing the jared classes in the tomcat common directory. Each webapp then gets the same copy of the singleton. What I would like to do is to integrate this behavior within eclipse. I would like the common classes to be ...

"Error creating session" when attempting to debug application with Eclipse/CDT & gdb

Hey! I'm receiving a rather cryptic error when attempting to debug a simple C++ application. Message: "Error creating session" Stacktrace: org.eclipse.cdt.debug.mi.core.MIException: Process Terminated at org.eclipse.cdt.debug.mi.core.MISession.setup(MISession.java:232) at org.eclipse.cdt.debug.mi.core.MISession.<init>(MISess...

Java: How could a breakpoint stop an applet from painting without *ever being tripped*?

In eclipse I am writing some code that crawls a specific webpage and downloads an applet, which it then adds to a JFrame and executes. If I run program without adding any breakpoints, it works perfectly. It loads the applet, and it begins running. However, if I add a breakpoint to the applets update(Graphics g) method, it simply stops...

Source code of libraries downloaded with ivy

I use ivy with the ivy eclipse plugin to download dependencies. Works great. But how can I attach the source code for those libraries, in order to step into these libraries? ...

How do I configure JUnit's Source in Eclipse?

I am using Eclipse Galileo for Java EE, and I want to configure JUnit to show me the source code when I try to navigate to its methods. I've tried attaching source to the JUnit library, but the library definition is not editable. I cannot even find where to configure the JUnit library in the preferences. When I open the Add Library wind...

A cycle was detected in the build path of project xxx - Build Path Problem

I'm in the process of converting my projects to OSGI bundles using maven and eclipse. Maven builds the stuff just fine, only I get the above error now within Eclipse. How can I find out which project causes this? Is there a special view or something? How can this happen, I would expect that maven can detect cyclic dependencies as well? ...

Eclipse Galileo - JUnit missing

Build Path > Add Library > JUnit unable to add JUnit3 or JUnit4 components. I see such message in the .log !MESSAGE No property tester contributes a property projectPersistentProperty org.eclipse.team.core.repository to type class org.eclipse.core.internal.resources.Project Eclipse Galileo installed by root user on Linux. It wor...

How do I suppress Eclipse 3.5's warnings of dead code

I use a class for detecting email addresses which uses static final booleans to configure the matching behavior. Since I upgraded to Eclipse 3.5 I get warnings about dead code, since Eclipse notices that one branch in this can not be reached: private static final boolean ALLOW_DOMAIN_LITERALS = false; private static final String domain ...

searching through .jar files eclipse

I'm porting a few java gwt projects into eclipse and the projects depends on many external .jar files, some of the dependencies seem to be dynamically linked so eclipse isn't picking up the missing links while running the ide. At run time, I often get exceptions that say for example 'import bar.foo.XML' is missing or some FooBar class d...