eclipse

In Eclipse, when building an Android app I've somehow deleted the "R" class and cannot get Eclipse to generate it again.

Hi all, I'm new to Eclipse/Android development so I'm hoping this is something basic that I'm just doing wrong. Basically I've been playing around with developing Android apps and I was editing one earlier. I changed my main.xml file and when I went back to my class that runs the app all references to the "R" class were broken. I look...

problem in creating jar file, eclipse.

Hi, I downloaded the source of some api like wsdl4j and i made changes to it, now i want to use this source as a jar file. But when i export it using eclipse export->jar file option and then add it in the buildpath compiler shows me the errors on the methods that i created in that wsdl4j source... does any body has idea how to tackle th...

Building a jar to be used in an eclipse PDE?

I have written an application that use a third party library. I have then packaged this as an executable jar using the maven-assembly-plugin (producing a jar with all dependencies including some of the third-party jars). Next I need to add this jar to a PDE project so it can be launched from eclipse. But to make this work I need to add ...

Problem with Eclipse and a Maven multi-module project

I have created a Maven project with the following structure: + root-project pom.xml (pom) + sub-projectA (jar) + sub-projectB (jar) I have done the following steps: mvn archetype:create –DgroupId=my.group.id –DartifactId=root-project mvn archetype:create –DgroupId=my.group.id –DartifactId=sub-projectA mvn archetype:create –Dg...

Create a web project from an ant buildfile in Eclipse

A guy at work needs to import an existing Java webapp into Eclipse. When he imports it from the Ant buildfile it creates a normal Java project instead of a web project. I think he also said it doesn't import the struts and faces? Something like that. Is there a way to create a web project in Eclipse EE from an Ant buildfile? If so, ...

how to make c-highlight in eclipse ?

I have installed Android NDK and want to make eclipse highlight c-source. How ? ...

What is the difference between building a WSDL in Eclipse and using WCF?

I'm somewhat familiar with WCF in that I can build Web Services in VS.Net ... I understand some of the concepts... But, the other day I cam across this option in Eclipse (I also use Java to code) to create a WSDL. Playing around with it it looks great since it has a GUI method of building itself. I guess I just wanna know what the diff...

.apk does not exist error when exporting Android project in Eclipse using android-sdk_r06-mac_86

I get a .apk does not exist error when exporting Android project in Eclipse using android-sdk_r06-mac_86. I never got the error in the previous version of the SDK. Off course the .apk file doesn't exist. I'm trying to build and sign it. How do I fix this problem? I prefer to getting it to work in Eclipse again. ...

How can a link within a WebView load another layout using javascript?

So I have 2 layout files (main.xml, featured.xml) and both each have a single WebView. When the application starts "main.xml" loads a html file into it's WebView. In this html file I have a link that calls javascript that runs code in the Activity that loaded the html. Once back in this Activity code though I try running setContentVie...

Show History in Eclipse shows nothing

I'm trying to figure out why Eclipse (v3.5.1) does not show any CVS history information when I use the Team->Show History context menu on a file. "Show Annotation" does show the annotations correctly, so I know the connection to my CVS server is working correctly. With Show History I just get the History tab with three panes, but nothing...

Unable to download jars using M2Eclipse (0.10.0, using Maven 3)

I am using M2Eclipse (0.10.0, Maven 3)in projects. I can add Maven dependency using m2eclipse. But dependency jars couldn't be downloaded. Instead, it created a file in each local repo folder named [JAR_Name].jar.lastupdate. The content of this file is some thing like : http\://[REPO_URL]/central/=1276221188566 Even using Maven 3 comman...

Zend dubugger in eclipse - timeout everytime

I am running a virtual server in the US. I am trying to get my eclipse machine at home (outside the USA), to connect to the USA server. I have setup Zend on the server. When I run phpinfo() I get the following zend output. Note: 1.2.3.4 will be the external WAN IP address of my ADSL router at home. Directive Local...

Eclipse - Error

Hi all, some days, without having done anything (changes, updates, upgrades), Eclipse gives me the following two errors: FIRST- Message: `**Problems occurred when invoking code from plug-in: "org.eclipse.wst.jsdt.ui".**` Stack Trace: `java.lang.NullPointerException at org.eclipse.wst.jsdt.internal.compiler.lookup.ArrayBinding.get...

Extending Eclipse product (parallel developments on a set of codes)

A spawn off of an existing eclipse product is required for customization for a client. (hence parallel product development) The intention was to use Eclipse Fragment, but "Fragments are additive, they cannot override content found in the host." how can we maintain one set of codes in the svn, yet allow customization by overriding some ...

svn:ignore for a file already commited in subclipse

I am trying to ignore some files that I have already commited to the repository in subclipse I followed this from http://stackoverflow.com/questions/1066809/subclipse-svnignore You can't svn:ignore a file that is already commited to repository. So you must: Delete it from the repository Recreate it in Eclipse Set ...

In Eclipse, how can I see all the code I've checked in this week? We use CVS

I'm using Eclipse 3.3.2 and CVS. Is there a way for me to see the code only I have checked in since some date? I know how to use "Compare With..." to see all the changes (anyone's code) since a particular version or date. Our team doesn't use Task Tags, could those help? ...

Printing Unicode in eclipse Pydev console and in Idle

My configuration: Win7 + Python 2.6 + eclipse + PyDev How do I enable Unicode print statements in: PyDev console in eclipse Idle Python GUI Example print statement: print(u"שלום עולם") This comes out as: ùìåí òåìí ...

Problems Installing Eclipse and Ruby Plugin

I installed Eclipse on my Ubuntu machine and then the Ruby Development Tools (RDT), but it would crash when I try to alter certain features, like having line numbers, how far back to have history, and the code coloring scheme didn't work fully. I decided to try to uninstall Eclipse by doing sudo aptitude remove Eclipse and then sudo apti...

How do you debug an Android IntentService?

I'm using Eclipse and have an emulator running Android 2.1 and my IntentService. I'd like to step through my onHandleIntent() overridden function. I've put in a breakpoint on the first statement of the function, which is Context context = getBaseContext();. When the intent is called the program just fails and does not go to debug view...

Eclipse shortcut to comment selection in an XML file

I am looking for a way to comment the current selection in an xml file in eclipse (STS 2.3.2). ctrl+/ gets seems to get ignored when editing XML. Google left me on my own. ...