eclipse

Eclipse/Flex WTP Project Stops Working within Eclipse

I have a Flex/WTP project within Eclipse that was running within Eclipse for a short time but then all of a sudden stopped working. Specifically, it was complaining about not being able to find a Java class on the server-side. I have not made any configuration or path changes to the project. The specific error is: [FaultEvent fault...

How to export my QtJambi project to .JAR file within Eclipse?

Hi, i am using Eclipse and i have a QtJambi project which i would like to export in a .JAR file. I have tryed several times it never worked. It worked for me on a Swing project, but with a QtJambi project, I dont know how to do it. Here are the screenshots (maybe it can help you to understand my situation): Export wizard (page 1) ...

What steps are necessary to get Eclipse and a Java servlet container integrated on Ubuntu 9.10?

What's the easiest way for me to get Eclipse running with a Java servlet container on Ubuntu 9.10? I've tried a number of things, hitting dead ends each time. The best setup would use Ubuntu packages as much as possible, not require running Eclipse as root, and be able to debug running servlets. Dead ends so far include run-jetty-run, ...

Debugging in Eclipse (Java); can't hover over a variable when breaking to view the value

Hey, Im using Eclipse to code Java (for Android) and Im trying to debug the code as I normally do (i normally do C# though). From what I can tell, debugging in Eclipse is really REALLY bad. I dont know if Im doing something wrong, but it seems to be just awful. This is the code that is being run, I get some sort of exception and I want...

Can you use Eclipse's .Project files variables for Code Style variables?

I want a way to have my code style do something like this.. this comment is in PHP but the concept should work for any eclipse compatible language. /* * @author ${user} * @version ${version} */ I would want to update the version variable once, then commit to the repository. So, now when others add comments it would include the Versi...

How to run eclipse in clean mode? and what happens if we do so?

if something is not working properly.. or some plugins are loaded properly in my eclipse... i often get suggestion to open eclise in clean mode... so how to run in clean mode? and what happens if i do so? ...

Eclipse - no Java (JRE) / (JDK) ... no virtual machine...

SOLVED! thanks to VonC I am trying to get Eclipse Galileo to re-run on my computer - i have run it before with no problems but now i keep getting this error: A java Runtime Environment (JRE) or Java Development kit (JDK) must be available in order to run Eclipse. No Java virtual machine was found after searching the following locat...

HttpClient alternative in Eclipse API

For HTTP communications in Java, I normally use the HttpClient library. However, my latest project utilizes the Eclipse API. Are there features in the API that have the same capabilities as HttpClient? As implied, this particular project requires me to use GET, PUT, and POST requests. I also need to post multipart MIMEs where the Con...

Why won't @override work??

What is wrong with piece of code? @Override protected void onCreate(Bundle savedInstanceState) { Eclipse states that @override cant be where it is. It says that 'Bundle' is wrong. I am lost. ...

how to make a file to open in a particular editor in eclipse?

I have many types of file in my eclipse workspace, so i want some files to be open in a particular editor. say a war or a jar with winrar. sql with some eql developer, xml,s with xml editor etc how to set that? so that whenever i open them, they should open a assigned editor. ...

Netbeans: Is there a way to mimic Eclipse CTRL+H looking for usages in JRE and Application Libraries ?

Hi, See Eclipse Java Search screenshot . I googled a lot, tryied my best but could not find any ways to tell Netbeans to search for method invocation in JRE / Application libraries. Let's consider: I have maven project with ApplicationA being runtime ApplicationA* artifat defines interface InterfaceA with method methodA I'm impleme...

Why does this error occur when I try to run a Junit test-case on the Android emulator?

After following some instructions on Diego Torres blog I am able to test my classes using the regular Eclipse JUnit test-runner, however I also want to be able to run my unit tests from within the emulated android environment. For now this should make no real difference since the classes I am working on do very basic numerical or netwo...

How to Run pinax inside eclipse ?

i have been trying to running some pinax code inside pydev eclipse i keep on having this error Error: Can't import Pinax. Make sure you are in a virtual environment that has Pinax installed or create one with pinax-boot.py. my question is how do i run pinax inside eclipse using django built in server i am python newbie ...

@WebServiceRef in managed bean don't work

Hi, I have created simple JSF page and managed bean for that page. I'm using Eclipse 3.5 SR1 ("for Java EE Developers" version) and Glassfish v2.1. Here is my page: <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> <html> <head> <title>Simple page</title...

Grails regenerate Eclipse project

I just upgrade Grails to 1.2.0. How can get Grails to regenerate the Eclipse .classpath file? It's currently pointing to the old Grails' JARs. ...

Google App Engine java eclipse plug-in cannot suspend on exception. Is this normal?

GAE java plugin does not suspend at any exception. So I'm seeing only stack-trace. The exception is just simple type-casting exception from bug on my code. (Not a custom breakpoint) I installed all tools with default setting and nothing configured additionally. Is this normal? And addition, DataNeucleus enhancing and app startup to deb...

GWT 2.0 Eclipse plugin - how to automatically launch browser on run / debug?

I've downloaded the new GTW 2.0 and it's eclipse plugin In the new eclipse plugin, when running or debugging instead of opening the browser, it shows this: For your convenience, here are some URLs that you may wish to view in development mode. Simply copy/paste a URL below into any supported browser. At least they could have made ...

Setting up MinGW with Eclipse Galileo on Windows.

Couldn't get it working on Windows 7 64 bits. ...

How to run all JUnit tests of a given package?

I use JUnit 4 in eclipse. I have some test classes in my package and want to run them all. How? ...

Eclipse IAutoEditStrategy only called on backspace; how to have it called on all edits?

I am currently working on a custom editor plugin for Eclipse. I've overwritten getAutoEditStrategies like this: public IAutoEditStrategy[] getAutoEditStrategies( ISourceViewer sourceViewer, String contentType) { return new IAutoEditStrategy[] { new KRLAutoEditStrategy() }; } and written a minimal Strategy like this: public class ...