eclipse-3.4

Eclipse & JSP: java.lang.NoSuchMethodError: javax.servlet.jsp.tagext.TagAttributeInfo.<init>(Ljava/lang/String;ZLjava/lang/String;ZZ)V

I'm using Eclipse 3.4 with WTP 3.0.2 and running a fairly large Dynamic Web Project. I've set up the project so that I can access it at http://127.0.0.1:8080/share/ but whenever I do, I get the following error: java.lang.NoSuchMethodError: javax.servlet.jsp.tagext.TagAttributeInfo.(Ljava/lang/String;ZLjava/lang/String;ZZ)V at org.a...

Is the Open Source Jalopy Eclipse plugin compatible with Ganymede?

After much searching, I found the download for the eclipse version of jalopy. Is this compatible with Eclipse 3.4? It's dated 2006. I've copied the extracted folder to my plugins directory and run eclipse -clean, but I can't find anything matching 'jalopy' in preferences. If it's not compatible, are there any (free) alternatives? ...

Add warning for missing @Override annotation for interface implementation in Eclipse

In Eclipse 3.4.1 using JDK1.6.0_10 how can I activate a warning on a missing @Override annotation on a method that implements an interface method? In the Preferences window this option: Java > Compiler > Errors / Warnings > Annotations > Missing '@Override' annotation works fine for missing annotations on methods that overrid...

Where has windows working sets gone in Eclipse 3.4

Where can I find the option to switch between the Windows Working Set in Eclipse 3.4 (Ganymede)? In the previous version it was under then Window menu, but it appears to have moved. ...

How do I attach source code locations to plugins in my Eclipse RCP target platform?

I've got a workspace with multiple RCP plugin projects. We've set the target platform, so we can build against a standard set of plugins, but are not able to see source code and Javadoc for all the platform plugins. The Windows -> Preferences -> Plug-in Development -> Target Platform -> Source Code Locations page doesn't seem to have a...

Eclipse 3.4 TextViewer

I am creating a plugin for Eclipse 3.4. I created a plug-in development project using the application with a view. Now I am trying to create a TextViewer the documentation says that it is located in org.eclipse.jface.text.TextViewer. But, this whole package is missing and eclipse cannot locate TextViewer class to import. I want to kn...

Automating unit tests (junit) for Eclipse Plugin development

I am developing Eclipse plugins, and I need to be able to automate the building and execution of the test suite for each plugin. (Using Junit) Test are working within Eclipse, and I can break the plugins into the actual plugin and a fragment plugin for unit testing as described here, here and in a couple places here. However, each of ...

Matisse in Eclipse

I have just installed Eclipse 3.4 and found out that there is not a plugin to create Swing applications yet. I also have found that there is a Matisse implementation in MyEclipse IDE, but I'd like to now whether there is such a Matisse plugin for free. ...

Eclipse 3.4 Ganymede Javascript Validation Issue

I just upgraded to Eclipse 3.4 for the second time and I think its for good now. The first time (right when it was released) was too buggy for me to stomach (mainly the PDT 2.0 plug-in); but now it seems to be all worked out. My problem is the Javascript validator. If I define a class in one JS file in my project, then try to use it in ...

How can I reference ANT HOME from the libraries in the properties of a project when using eclipse?

In our code base we have a dependency on the ant version used in eclipse. In the the ant.jar has been set up as a library which the project uses This is a pain when moving versions of eclipse as the Ant plugin folder name changes (although I see it is now just called Ant1.7) Is there a way to access eclipses reference to ANT Home whic...

JSEclipse Alternatives in Ganymede

I've been having a lot of problems with JSEclipse in Ganymede, but I haven't had much luck finding an alternative that's compatible with Ganymede (eclipse 3.4). All I'm really looking for is code-highlighting. Anyone have any good alternatives, or do I just need to suck it up and get on with it? ...

How to programmatically change name or icon of Eclipse view?

Can the name and icon of an Eclipse view be programmatically changed? I am referring to the name and icon that appear in the tab for the view - which are specified as XML attributes "name" and "icon" in the <view> element in plugin.xml. ...

Any tips on how to organize Eclipse environment on multiple monitors?

I can't find a good way of putting Eclipse windows on two monitors. Currently I just detached (clicked on a header and dragged) a few windows to a secondary monitor (package explorer, console, and outline) while leaving primary monitor with maximized source editing window. It works pretty well except few annoying issues. Detached windo...

Where to put the external jars?

Hello, i use eclipse (3.4) an my class compiles without warning nor errors. My project uses an external jar file. Where do i need to put this external jar file in order not to get a java.lang.NoClassDefFoundError when using this class from another project (not in eclipse)? Edit: I could just extract the jar into the project folder, bu...

Eclipse Ganymede HTML editor incredibly slow when editing attributes

Hi I recently upgraded to Eclipse Ganymede from Europa and now I'm finding that when I'm editing JSP files the IDE crawls when editing HTML attributes (but not JSP attributes). Has anyone experienced this, or have any suggestions? Also if you can point me to a better place to ask Eclipse related questions, do tell. Thanks! ...

Custom command for Eclipse on current file

I would like to enhance Eclipse so that when I press a custom key combo--say Ctrl + Shift + E--then it will run a command on the current file (if my current buffer is foo.c then it will run `mycommand foo.c' in foo.c's directory). ...

Synchronizing eclipse save action rules

My team has a fairly rich set of formatting rules and save actions and these rules are evolving. We're looking for a mechanism to define the centrally and propagate them automatically. We don't want to reformat the code base, but we expect the formatting to improve incrementally over time. We're using Subversion for source control, thoug...

Where do Eclipse sub-processes (launched with the "run" menu) show up?

I'm using Eclipse 3.4.1, moving my first steps. When I run my project (a server process) a console opens. But for some reasons after a while I can't find it anymore (even if the process is still up). I'd like to find it to be able to see its output and/or kill it. Is there a place in Eclipse where I can find all running sub-processes? ...

Eclipse: How to ensure jar in plugin is given priority over other versions elsewhere?

I am developing an eclipse plugin which contains a specific version of Lucene. I need to generate a search index and deploy it so that it can be read by another application which uses the same version of Lucene. I recently upgraded eclipse to 3.4 and the search index is now not readable by the 2nd application. I see that eclipse 3.4 con...

Limiting contributed extension point data between eclipse plugins

I have 2 eclipse plugins that I am building; let's call them plugin A and plugin B... Plugin A requires a license to run and Plugin B is free to the world. I have created an extension point in Plugin B to which Plugin A contributes (and in some cases overrides) data. I would like to find a way to disregard that data in plugin B if plugi...