eclipse-3.4

The XML code runs properly, but junit fails with NoClassDefFound

I am upgrading my environment from eclipse 3.3.1 and java 1.4 to eclipse 3.4.1 and java 1.5. My unit tests are in jUnit 3. eclipse java version 1.5.0__17 stand alone env version 1.5.0__12, or 1.5.0-17, both work. I have a method on a class that writes an XML file to disk. It calls TransformerFactory tf = [javax.xml.transform.]Transfor...

Eclipse 3.4 package explorer question

hi, is it possible to do something like this: Let's say I have a lot of projects in my package explorer. I want to make different views. For example a view for projects I don't use very often, my main things, common things. Basically i want to clean up my package explorer to get a better overview of all my things. At the moment everythi...

In Eclipse Find/Replace-field can i alter the regexp-matched result $1?

I want to search and replace a lot of numbers in the range 0-9 and add one to them, so they become in the range 1-10 instead. for example: 0 3 5 would become: 1 4 6 In eclipse Find/Replace window I can match a number with ^([0-9]+)$ In the replace-field can I somehow add to the matched number $1? /G ...

How can I output execution display to console in Eclipse for remote C++?

I'm using Eclipse 3.4.1 with Hp/UX plugin for remote debugging of C/C++. It works very fine, except for one issue: whenever I compile my projects, the output display is Eclipse's console view, but when I run or debug any projects, the output window is the old and not-so-good MS-DOS command window. I haven't find any way to change this be...

In eclipse API, How to get IFile from file that locate outside project or workspace

I want to create IFile interface to open file that locate outside project or workspace. How to get IFile interface? Regards, Simon ...

Eclipse JavaEditor extension: How to add a properly indented line?

What is needed? We are writing an extension to eclipse's JavaEditor. We need a way to add a line before and after the line the cursor is in. The cursor on the new line should be on the correct position (correctly indeted). Sample (# is the cursor): before (I): public class Test { public static void main#(String[] args) { ...

Eclipse Data Source Explorer : SQL Scrapbook

Is it possible to open an SQL scrapbook with the Data Source Explorer in Eclipse 3.4+? I found this on how to open a SQL Scrapbook in Database Explorer which applys to eclipse 3.2+, but doesn't seem to be supported in the latest version. ...

how to fix Eclipse losing reference to third party jar in project sets

Occasionally I see eclipse lose the reference to the third party jars contained in the a projects. (you get the the build path error stating the jar cannot be found) Its easy enough to fix as you can remove the jar, save the properties of the project and then go in and re-add the jar that it could not find, eclipse can then see the path...

Using Spring IDE in Eclipse 3.4

Hello, I'm using the Spring IDE plugin with Eclipse 3.4 (finally decided to upgrade), and I have several projects which use the Webflow integration that comes with the Spring IDE plugin. For some reason, I can't view anything having to do with Spring Webflow in Eclipse 3.4. It worked just fine in 3.3, but not 3.4. Has anybody encount...

Eclipse: Refreshing known types in Java project

If you press Shift+Ctrl+T or choose "Navigate > Open Type..." you get the "Open Type" dialog for quickly navigating to a known class. When you start typing a name only the classes for which the name matches stay visible. That way you can find a class of which you know the name very quick without having to browse through the package expl...

eclipse default jpa implentation library where to download?

In eclipse, the "default implementation library" what jars files do I need to include if I do not want to use server runtime? I'm refering to this tutorial http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.jpt.doc.user/task_create_new_project.htm ...

Eclipse CDT Debug console not displaying program output

I am using Eclipse IDE for C/C++ Developers (Eclipse Ganymede Package - version 3.4.2) on Windows XP with MinGW GCC 4.2.1 and GDB 6.8-3. I am facing a problem very similar to that mentioned here. A simple hello world program will not print to the console output in the debugger. A run command displays the output correctly. I have checke...

how do I set eclipse.ini -vm option ?

I installed maven plugin for eclipse, then I get an error like below: please make sure the -vm option in eclipse.ini is pointing to a JDK how to use -vm option to point to my jdk in eclipse.ini? ...

Development Environment Java 6, Maven 2.x, Eclipse 3.4.x, JBoss 5 and JBoss Seam

I have to organize a development environment where I can run Maven projects with JBoss Seam, IDE eclipse 3.4.x and deploying to JBoss 5. The projects that will run on this environment are based in Java 6, EJB3 and JSF1.2. The environment has to support hot-deploy. I used to work in a development environment with Sysdeo Plugin to make To...

Eclipse steps through comments on undo

When I undo a sequence of steps in a Java editor in Eclipse 3.4.2, the cursor skips over a bunch of comments unrelated to any change - only the method comments (eg. /**), not inline comments. Does this happen to anyone else? Any solutions to stop it? ...

eclipse view classes dependency graph plugin?

is there any plugins i can use for eclipse that will show graphical view of classes dependencies ? ...

eclipse server locations disabled and need to change to use tomcat installation

I Have set up a dynamic web project in eclipse with a tomcat 5.5 installation. I want to be to set the server to us the tomcat installation instead of the workspace metadata location but when eclipse displays the Overview screen for the server the Server locations section is disabled and therefore I am unable to change it. The overview...

generate interface from solid class file in eclipse

any pluginsin eclipse that auto generate interface file based on solid class/impl class ? currently i hand code interface file. ...

A new version of Eclipse just came out. Is there anything I can do to avoid having to manually hunt down my plugins again?

Galileo came out the other day, and even though plugins under Eclipse are, IMO, just a little bit easier to deal with than Netbeans, it would still be really awesome if there was a simple way for me to upgrade to the new version (and take my plugins with me). Any tips? ...

How Do I Automatically Generate A .jar File In An Eclipse Java Project

I have an Eclipse Java project. It contains a folder named "dist". In that folder is a .jar file. How can I set things up in this project to make sure this .jar file is updated any time one of the .java files in the project has been re-compiled? Thanks. ...