eclipse

eclipse 3.5: servers panel, the names of servers are in white color, so i want to change back to black

eclipse: servers panel, the names of servers are in white color, so i want to change back to black. how do i do it? ...

Eclipse Logcat window cuts off exception stack traces

My logcat window in Eclipse only displays the first few lines of the StackTrace for each exception. This means that I often can't see where an exception occured. Is there any way to change this setting? ...

Recursion in Ecore-File?!

Hey guys, just tried to convert towards a Ecore-Model from a given UML-Model. After this I am trying to create a Generator Model. Everytime I try to do this I get the Error Message, that there is a "Unhandled event loop exception" with this log: org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException)...

Adding Flex Modules

Is it possible to add multiple Flex Modules at a time to be built in a project as opposed to adding them one by one, as this is becoming a very tedious task. This is for both Eclipse and Flash Builder 4 ...

Random problem with eclipse. Unspecified validation error, I have to add and remove a library

Hi there From time to time I have a strange problem with Eclipse. I get a validation error for a project but without any details. The only fix I found is to remove any library, clean the project (re-build) and add the library again. Then the problem dissapears! Does anyone have the same problem, is it typical / addressed? ...

how to add other than jar or zip files to any projects buildpath in eclipse?

I want to know how to add other than jar or zip files to any projects buildpath in eclipse? ...

installing GWT plugins to eclipse

hi guys, i started to explore GWT yesterday it self and was going basic tutorial in google documentation, I've downloaded GWT ran a sample project without Eclipse as the tutorial stated and then started to setup Eclipse. I'm using Eclipse Galileo and according to given instructions i followed the steps and when i was installing GWT plu...

How do you stop Eclipse from inserting a certain class in Content-Assist?

I'm using SpringSource Tool Suite (Eclipse) to program with Grails, and I'm also using JFreechart in the program. In Grails you log by typing log.info("method worked"). Unfortunately JFrechart has a class called "Log" with Static methods like "info". This means that in STS I type log.info and then when I type space or ( Eclipse "assists...

Eclipse Error: java.net.SocketException: Broken pipe How to Solve ?

Hello Everybody I am using GWT2.0.1,when I am running web application then I get following error message on Console. after removing error from error log still same message occur as well as restarting eclipse_galileo.To solve this problem i want to restart machine. Each time this message comes on console,then i need to restart m/c I the...

How to config phpeclipse to myeclipse 8?

I copy the features and plugins of phpecipse to the myeclipse root, but nothing happened. ...

is there a tool in Eclipse like command line ?

so that you can type os commands right in Eclipse? calls to mvn for example.. ...

RCP unit-tests via fragment delays any view to be shown after all test are finished

hi, I have strange problem using fragment with tests for my plug-in. all I do in the test is initialize the view in set-up and then in test I wait 20 second (with Thread.sleep). the result is that my application (view) never show until the test finish. can I do something about it? this is just an example, my test are about testing ui ...

android service question

Hello, I have a class, MyService. This is my Android service. I wanna generate two random numbers, and this service should return the sum of these numbers. How can i do that? So , i should generate the numbers in public void onStart(Intent intent, int startid) { //Toast.makeText(this, "My Service Started", Toast.LENGTH_LONG).show()...

Eclipse PDT - how to debug the $_SESSION, $_GET, $_POST variables...

Hi, I'm stepping through code using Eclipse PDT. When I mouseover an array it says e.g. "$_SESSION = Array [0]", but won't show me the data. This is fine for local varaibles as I can see them in the "Variables" window, but it means that I can't see the contents of $_GET, $_POST, $_SESSION. How do I fix this? ...

Building a J2EE dev/test setup on a single PC

It's been a while since I did Java work, and even then I was never responsible for starting a large project from the very start... there were test/staging/production systems already running, etc, etc. Now I am looking to start a J2EE project from scratch on my trusty workstation, which has never been used for Java development and runs W...

Selenium RC 403 Error - Forbidden for proxy

I'm trying to run Selenium RC 1.0.3 using Java 6, JUnit 4, and Eclipse on Snow Leopard. Here is my test class, from the Selenium docs: public class TestCase extends SeleneseTestCase { @Before public void before() throws Exception { setUp("http://www.google.com/", "*firefox"); } @Test public void test() { selenium.op...

How do you get Eclipse/Mylyn to fill out your commit messages for you?

I've setup the following: Installed Mylyn in Eclipse Installed the Bugzilla connector Installed Subversive SVN Integration for the Mylyn Project I've gone to Windows -> Preferences -> Tasks -> Team and clicked Change Set Management and left it with the default Commit Comment Template: ${task.status} - ${connector.task.prefix} ${task....

Working with utf-8 files in Eclipse.

Quite straight forward question. Is there a way to configure Eclipse to work with text files encoded with utf-8 with and without the BOM? So far I've used eclipse with utf-8 encoding and it works, but when I try to edit a file generated by another editor that includes the BOM, Eclipse doesn't handle it properly, it 'shows an invisible c...

java.lang.UnsupportedClassVersionError in eclipse

Hi all, I am not a Java programmer really, so I am posting this question. The exception is being thrown java.lang.UnsupportedClassVersionError in my main class in an eclipse project. If I comment out the imports that this class has, it compiles and runs fine. If I put the imports back in, it does not work. Does this mean that the librari...

Where should test classes be stored in the project?

I build all my web projects at work using RAD/Eclipse, and I'm interested to know where do you guys normally store your test's *.class files. All my web projects have 2 source folders: "src" for source and "test" for testcases. The generated *.class files for both source folders are currently placed under WebContent/WEB-INF/classes fold...