eclipse-3.5

Why do errors no longer appear in Eclipse's package explorer?

独自空忆成欢 提交于 2019-12-03 01:50:23
My project used to be fine - errors showed up in the file margin, the editor breadcrumb, the problems view and in the package explorer tree as little red X marks. Somewhat spontaneously though, it's stopped working properly. If I introduce an error into my code, it shows up in the file margin, and nowhere else. It takes a 'project clean' to make the red X's show up elsewhere. Then if I fix the problem, the error is cleared from the file margin but the red marks persist elsewhere until I do another clean. Why is it no longer showing errors properly in an automatic way? I'm using Eclipse 3.5 Did

Eclipse 3.5 Copy & Paste Problem

好久不见. 提交于 2019-12-03 01:02:10
I recently updated my Eclipse to the latest release 3.5 and since then I have a very annoying problem with c&p using the shortcuts. In an editor (xml, jsp, doesnt matter which one) I try to copy something and paste it somewhere else, nothing happens. When I cut out something and put it somewhere else I sometimes get something else (like a messed up part of my previous selection) or just some whitespaces. This gets even worse when I change lines in between. First I thought that my keyboard is probably broken but it works just fine in other programms. Then I tried using the contextmenus c&p and

Difference between Eclipse Europa, Helios, Galileo

不想你离开。 提交于 2019-12-03 00:14:06
问题 What is the difference between versions of Eclipse (Europa, Helios, Galileo)? Which is the best for desktop application? 回答1: The Eclipse (software) page on Wikipedia summarizes it pretty well: Releases Since 2006, the Eclipse Foundation has coordinated an annual Simultaneous Release. Each release includes the Eclipse Platform as well as a number of other Eclipse projects. Until the Galileo release, releases were named after the moons of the solar system. So far, each Simultaneous Release has

Difference between Eclipse Europa, Helios, Galileo

风流意气都作罢 提交于 2019-12-02 13:57:11
What is the difference between versions of Eclipse (Europa, Helios, Galileo)? Which is the best for desktop application? Pascal Thivent The Eclipse (software) page on Wikipedia summarizes it pretty well: Releases Since 2006, the Eclipse Foundation has coordinated an annual Simultaneous Release . Each release includes the Eclipse Platform as well as a number of other Eclipse projects. Until the Galileo release, releases were named after the moons of the solar system. So far, each Simultaneous Release has occurred at the end of June. Release Main Release Platform version Projects Photon 27 June

Java perspective is not visible in eclipse

僤鯓⒐⒋嵵緔 提交于 2019-12-01 16:30:28
I installed eclipse on a new unubtu install, via the package manager. I have Galileo. I copied my home directory from an older machine, and tried to open that workspace. Now I dont see any java perspective. (Possibly, all the info above is not relevant, but I just wanted to add any possible info, as this a clean install of Eclipse via package manager, so I cant think of any other non standard thing I might have done.) What happens if you go to Window > Open Perspective > Other... ? Don't you see Java listed there? If not, I don't think the problem is related to the workspace from your previous

Java perspective is not visible in eclipse

不想你离开。 提交于 2019-12-01 15:08:48
问题 I installed eclipse on a new unubtu install, via the package manager. I have Galileo. I copied my home directory from an older machine, and tried to open that workspace. Now I dont see any java perspective. (Possibly, all the info above is not relevant, but I just wanted to add any possible info, as this a clean install of Eclipse via package manager, so I cant think of any other non standard thing I might have done.) 回答1: What happens if you go to Window > Open Perspective > Other... ? Don't

Can Eclipse 3.5 discover all bundles in the plugins dir?

ぃ、小莉子 提交于 2019-11-30 19:29:42
Simple usecase : assemble an Eclipse product using simple scripts, just dumping bundles into the plugins dir . This used to work with 3.3 - with 3.5 it's broken: my application doesn't start as the app plugin is not found. Question : what's the easiest way to fix that? This seems to be the only pain in the whole upgrade process for me. Attempts : I guess this is a no-no for P2: it maintains the bundles.info file instead, which is probably very smart.. a bit too smart for me. Some ideas I had: can I just skip P2 altogether and get back to plain old, simple -dirty- discovery mechanism? can I set

Run Junit-Tests from several projects conveniently fast in Eclipse

◇◆丶佛笑我妖孽 提交于 2019-11-30 17:09:07
Is there a way to run JUnit-Tests from several projects conveniently fast in Eclipse? The JUnit-Runner lets you define a package or a folder where from all contained tests are executed. Is there a way to do this with tests from several projects inside Eclipse? Preferably it should be via the Junit-Runner. If there is some way to have it fast via an Ant-job (so not depend on a complete build with ant before), that would be also nice. Rich Seller You can't do it through the UI. Looking at the extension-points the highest-level element JUnit will collect for is the Project. I suppose you could

Setting up Pylint with PyDev

青春壹個敷衍的年華 提交于 2019-11-30 11:55:33
问题 I have installed pylint via easy_install. I can run pylint <filename> with success. But pydev refuses to use it. I checked "use pylint" I configured correct path I updated my python interpreter in eclipse to have pylit in pythonpath I use Eclipse Galileo I have build automatically checked I tried cleaning whole project and no errors What am I doing wrong? 回答1: I'm guessing you may need to mark the folder that contains your code as a source folder . You can do this under project properties.

Can Eclipse 3.5 discover all bundles in the plugins dir?

六眼飞鱼酱① 提交于 2019-11-30 03:13:31
问题 Simple usecase : assemble an Eclipse product using simple scripts, just dumping bundles into the plugins dir . This used to work with 3.3 - with 3.5 it's broken: my application doesn't start as the app plugin is not found. Question : what's the easiest way to fix that? This seems to be the only pain in the whole upgrade process for me. Attempts : I guess this is a no-no for P2: it maintains the bundles.info file instead, which is probably very smart.. a bit too smart for me. Some ideas I had: