eclipse

Eclipse 3.5 + ADT: build path errors

I am using Eclipse 3.5 for Jave EE Developers. Plugins installed include: Android Development Tools, Adobe Flash Builder 4, PDT, PyDev. I have problem with running the application I built. I can start a new project, add a button, and run it on an AVD. Then I add another button, try to run it on AVD, and Eclipse says 1) gen folder is mi...

Using Eclipse, how do I script the formatting of a code snippet for Stack Overflow?

The background: I'm a dyed-in-the-wool Emacs user who dabbles in a lot of languages. Recently a Famous Engineer upbraided me for continuing to use Emacs in this day and age, and I wish to put this Famous Engineer's chiding to the test. (This Famous Engineer happens to be partial to NetBeans, but we'll let that slide for the moment. ;-) )...

Exclamation Point Next to Jars in Java EE Module Dependencies

I have a J2EE application that consists of an EAR and a WAR. The EAR contains all of the references to the external jars which I then reference on the Java EE Module Dependencies screen within Eclipse for the WAR. For certain jars I get an exclamation point next to the jar icon and do not understand why. I know for certain that those ...

Which files should be imported in a subversion repository for a web services project?

I created a Java Project in Eclipse using the Web services Top down approach (i.e. creating a WSDL file and using it to generate the Skeleton Java class and web services with axis2) (Hence, there are a lot of auto-generated files and axis2 jar libraries). My Project has the following files/directory structure - Deployment...

Portable JDK, Tomcat, and Eclipse (Windows)

Does anybody know how to make a usb thumb drive with a JDK, Tomcat, and Eclipse (J2EE) (all for a Windows platform, preferably)? I saw this question, but the only answer was speculative. I know that the eclipse part would be easy -- just put it on the thumb drive. Tomcat requires a JDK as far as I know. Would there be a way to setup to...

How do I add CodeIgnitor System folder to Eclipse Project - Ubuntu

So I'm pretty new to Ubuntu and even newer to Eclipse. I am trying to get started with the PHP MVC framework, CodeIgnitor. I am using the following article to setup my dev environment: http://hetal.wordpress.com/2009/09/04/working-with-eclipse-and-code-igniter/ I am trying to add the CI 'System' folder to a new project in Eclipse. I am ...

Rational Software Architect: UML to Java transformation: Java Source Code Layout

Hi, I am using IBM Rational Software Architect for creating a UML Model and then transforming it to Java Code. Unfortunately the generated Java Souce Code format isn't the greatest, at least it is not the format I want to use. An example: /** * */ package net.game3.shared.entity; /** * <!-- begin-UML-doc --> * <!-- end-UML-doc -...

C++: How to link a library, located in my project folder?

Hi, I'm using Linux and Eclipse. I want to use a library (Box2D). I have the lib-file "libBox2D.so.2.1.0". I put it in a self-made lib folder in my project folder (also the working directory for the executable). I added -lBox2D to the linker command-line arguments. (This means I added "Box2D" as library in the Eclipse GUI). But when I ...

cvc-id.3 error in web.xml

I'm getting this error message while editing web.xml file in eclipse for SpringMVC web-app: cvc-id.3: A field of identity constraint 'web-app-servlet-name-uniqueness' matched element 'web-app', but this element does not have a simple type. here is part of my web.xml: <?xml version="1.0" encoding="UTF-8" ?> <web-app xmlns:...

Eclipse/Android - Debug Configuration - Device?

I have set up a "Debug Configuration" to debug my Android project. However to get it to debug on a device (HTC Desire) I have to set the Configuration's "Target" to "Manual", there seems to be no way to set in the Debug Configuration that it should go to a selected Device. It does work, but each debug session I have to "Manually" choose...

Cannot run program "make": The system cannot find the file specified?

This is the first time that this error has come up. I am using Cygwin with Eclipse 3.5 and my Path variable is set to: %CommonProgramFiles%\Microsoft Shared\Windows Live;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Prog...

How can i display a webpage in a BlackBerry Browser field?

i'm developing a aplication for blackberry and i want to display a simple webpage (for example www.google.com). i'm having troubles using the examples on the blackberry developer page, can anyone give me an example that work? i'm using Eclipse and net.rim.device.api.browser.field.* api. my blackberry's device OS is 4.6 ...

HTTP Record/Playback alternatives to Eclipse+Solex

Hey All, I have been playing with Solex, http://solex.sourceforge.net/ ... quite a cool Eclipse plugin that allows you to record and playback HTTP traffic, make assertions, request-time header mods based on variables pulled from prior requests (via regexp, XPath). All in all, quite impressed; However, I can not see any method for runti...

Problem debugging C++ with an Eclipse based IDE

Hi all, This is a weird question in that I'm not sure where to start looking. First of all, I haven't done any C++ programming for the last 10 years so it could be me thats forgotten a few things. Secondly, the IDE I'm using is Eclipse based (which I've never used) and customized for Samsung bada based mobile development (it kicks off ...

creating a jar for a project in Eclipse

I am using Eclipse and I have just started working on a project that needs another project (say pjkt) to function. The pjkt project files are stored in a specific folder. I would like to create a jar from pjkt and then add this jar to my project buildpath. How do I do this? Do I need create first in Eclipse a new project from the pjkt co...

Android-ndk with eclipse: How to force reinstallation of apk.

Hi, I'm developing a library in c++ using the android NDK. Actually i created my project in android with both java and c++ sources. I can compile and run my project and all works fine. Now i would like to force eclipse to reinstall the apk on the phone even if the java code is unchanged but something changed on the c++ side. Infact if ...

Which Continuous Integration Plugin for Eclipse

I do a lot of TDD and am thinking of installing a Continuous Integration Plugin for Eclipse. The two most popular seem to be JUnit Max and Infinitest. As both are "payed for", I'd like some opinions on the pros/cons/otherwise of each. Maybe there is a "free" alternative that I've missed? ...

I cant find the Plugin Project in my newly installed Eclipse? Help.

File > New > Other , but its not there. =(. I only see General, CVS, Java, Tasks, XML and Examples. Do I need to install anything else to get the Plugin Project so I can use the wizard? Thanks, I was planning to write some sweet plugins but I am stuck. ...

Symfony and Eclipse: I can not go to the function or class using F3.

I'm using Eclipse (Build id: 20090920-1017) to write my Symfony web application and in many cases I can not "go" to the declaration of functions or classes (you know placing the cursor where the class or the function is called and then pressing F3). For example: I have this class: class UsuarioFormFilter extends BaseUsuarioFormFilter{ ...

maven + eclipse + servlet-api.jar

Hello, I'm using Eclipse along with plugin m2eclipse to build and manage my project. In POM, I have included entry for servlet-api: <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> Scope is provided, not to include the ....