eclipse

Eclipse: How to add an existing source folder?

ARGH Eclipse is SO frustrating I have a directory called c:\RemoteSrc . Under this there are 3 directories which are currently source folders (I think? the icon is an open folder with a little orange grid in it) in my Eclipse project. I have dropped a new directory under c:\RemoteSrc which I also want to add to my project. BUT If I ri...

How can I parse XML doc with Schema 1.1, in Eclipse IDE?

How can I validate XML documents with Schema 1.1 in "Eclipse IDE" OR How can I validate an XML docs in "Eclipse IDE" by using external Apache xerces parser? (this will resolve my issue as xerces supports Schema 1.1) ...

Running a web server in eclipse

I know it might sound weird, but I wrote a web server without knowing how to deploy it and run it, so how do I do it in eclipse? (and please specify the eclipse version) thanks ...

Getting XText to work

I know you don't like helping others in their homework but I have to make an XText grammar, write a sample code that matches this grammar and compile it to a html file. The lecturer showed us the steps and everything worked for him... He said "It's so simple it will be a 10 minute work for you". And I believed that. However at home almo...

Iphone App Development on Eclipse IDE?

Is there any possible to develop the Iphone App using Eclipse IDE in Windows? Please note Windows platform has any possibility to the Iphone Development? Any Idea? EDIT: How about this Cygwin TOOL and this Blog ...

How do I create a menubar & items in Eclipse E4 using the XWT ui's ?

I am using eclipse E4 I am busy creating a project using the XWT widgets & UI's any examples on how to create menu items for my composite ? ...

Problem Building dschaefer / android-box2d

I'm trying to build dschaefer android-box2d, and did follow the recipe. I do get this error when trying to build the TestBox2d with eclipse: make all /cygdrive/c/android/android-ndk-r3/build/prebuilt/windows/arm-eabi-4.2.1/bin/arm-eabi-ld \ -nostdlib -shared -Bsymbolic --no-undefined \ -o obj/libtest.so obj/test.o -L../box2d/lib/andro...

choose a tool to create/maintain custom eclipse distrib

I would like to settle on a tool to create/maintain my custom eclipse distrib (starting with next 3.6). By studying previous questions main contenders seem: Pulse Yoxos Google Workspace Mechanic: recently announced doing it yourself in eclipse Has anyone experiences in several of them and can comment on advantages etc?? My wishes are...

how to hide "help" image from wizard?

Hi Do someone know how to hide such help image from my custom wizard? setHelpAvailable(false) doesn't work, it hides "rectangular help button", not this image. Thanks ...

What's a good free tool for investigating unintentional object retention in Java?

My multithreaded Java program crashes because it runs out of heap space and I don't think it should. Assuming the culprit is unintentional object retention, what's a good free tool to investigate what objects are being unintentionally retained? My IDE is Eclipse. ...

Does resharper add any kind of code refactoring to VS that Eclipse doesn't have?

And if so are there Eclipse plugins that add those types of code refactoring to eclipse? note:for C#/Java respectively. ...

Eclipse Data Source Explorer and MS-Access

I can't see any of my schemas when I try to use Eclipse data source explorer. It's not a problem with JDBC connection because I can connect and execute SQL statements. It's just that the tables don't appear. How do I make them to appear? ...

require_once file not found in php eclipse project

I have a php script that has the following requirement command: require_once 'HTTP/OAuth.php'; the file HTTP/OAuth.php is in php's include_path that is .:/usr/lib/php. Nevertheless in Eclipse the require_once line is marked with the following warning: Include filename: 'HTTP/OAuth.php' doesn't exist in project: How can I make my proje...

Can't run jUnit with Eclipse

I use new Eclipse. Create demo test with jUnit (I added default jUnit library built-in Eclipse). Then I write this code: import junit.framework.*; import org.junit.Test; public class SimpleTest extends TestCase { public SimpleTest(String name) { super(name); } public final void main(String method){ } @Test ...

Eclipse IDE vs Netbeans IDE, which one is better for Java EE 6 development?

Hi, I would like to know which IDE is better for Java EE 6 development. Can anyone give me the comparison of these 2 IDE in terms of features? Thanks. ...

Subclipse - How to mark a major revision?

Hi, How does one go about marking a major revision using the Subclipse plugin? I'd like to mark a project at the end of an iteration such that it's possible to revert if necessary without going through endless changes. TIA. ...

difference between SDL and GLUT

Hi, I am learning the Opengl graphic programming at Eclipse. Can someone tell me the difference between GLUT application and SDL application, so that I can dig into either one of them? Tks. ...

Android & Eclipse 2 different versions of the same app.

Hello I am a beginning android developer using windows and the eclipse IDE to develop java android applications.I have published one game but there is a free version of the game and a paid version. The google market insists that the different versions must have different package names. So far i have been refactoring the package with 2 di...

Where is the classpath variable restored in eclipse?

If I manually add another variable like M2_REPO pointing to a directory, I don't find it in either .project or .classpath, where is it restored then? ...

Can't disable method parenthesis auto-complete in Eclipse

I'm trying to disable the automatic closing of brackets in Eclipse, and while I've mostly succeeded, I can't stop the editor from inserting a closing parenthesis for a method call. The result is that when I type: myBool.equals(true); it inserts a closing parenthesis as soon as I type the opening parenthesis, and what I actually get is...