eclipse

Debugging blackberry library

I have a workspace with the following 3 projects: Library Tests GUI The tests only hit the library. This is a BB project with the type set to "library" All my tests seem to be working and hitting the code. If I debug the tests using JUnit, I can step in to a function in my library, view my variables and all the normal debugging goodn...

What are the Eclipse software requirments to run MercurialEclipse plug-in?

I have installed MercurialEclipse in both Helios "Eclipse Classic 3.6.0" and Helios "Eclipse IDE for Java Developers". Only in Classic does MercurialEclipse actually appear in the File->Import selections. What are the additional Eclipse plug-ins that need to be installed in the Java IDE version in order to enable MercurialEclipse? I t...

How can I get Eclipse / PyDev to ignore alternatives to cls?

I have inherited some code that uses klass instead of PyDev's preferred cls: def func(klass): # do something that doesn't reference klass return True PyDev issues a warning that there is an unused parameter klass, which it wouldn't do if we used the parameter cls. Is there an easy way to let PyDev know that klass is the same ...

Eclipse Helios + BIRT 2.6 - Cannot add/create datasource

I cannot create any datasource including the "Classic Models Inc. Sample Database". I do not get any error on the UI but the data source does not get created / does not show up in the Data Explorer. Has anyone else encountered this issue? How can I fix this? TIA ...

How to add parameters/switches to Eclipse/Maven Run Configuration

Hi, I have Eclipse (Galileo) with m2eclipse, GWT Eclispe plugin and the GWT Maven plugin from codehaus installed. I created a new "Maven Build" run configuration in Eclipse and have set the goal to gwt:debug. When I run the configuration I get this error in my console: [ERROR] Failed to execute goal org.codehaus.mojo:gwt-maven-plugin...

Mylyn Eclipse JIRA bridge

When I go to submit an issue on JIRA, I get the message 'Resolved by is required.Documentation Required is required.'. Does this eclipse plugin support the 'Documentation required' option on JIRA? ...

What broke my Android Development Environment?

Things had been going swimmingly, but as of last night, when I hit a breakpoint in my own code (not Android code--I've found plenty of people looking for answers to that question, and I get why that's not available), I'm presented with "Source Not Found". I can try "Edit Source Lookup Path ..." all I want but to no avail. What might hav...

Problem running Pydev

Hi everyone, I am trying Django recently in Ububtu. So started using a developement environment, which is Pydev in Eclipse. I've installed all, but while configuring window>preferences>pydev>interpreter-python there are these problems I have: What files in Linux should be selected? Every time I select a file from /usr/lib/python2.6/disk...

LESS CSS Support for Eclipse PDT?

Hey Guys, does anyone knows a plugin for eclipse which adds LESS CSS support? It doen't need to have any functionality from LESS integrated to eclipse. I only need syntax lightning and a "add less file" option. Any help is appreciated,thanks in advance. Nico ...

Not understanding a basic concept of Android application development

First and foremost, are there many android developers here? Is this a good place for Android related discussions? I seem to be missing a rather large concept of Android development. The gist is I am struggling understanding how to tie an application together. I’m not sure how to explain it, so I thought I would do my best with an examp...

Using Django in Eclipse

Hi, I am trying to use Django in Eclipse, but I have no idea how to import Django in Pydev project lists. The 'New Project' just has 'Pydev projec'. Some help please Thank you ...

Where does Java Project Explorer load files from in Eclispe IDE

I'm a .Net guy and used to csproj/vbproj files being the central repository for all folders/files in a .Net project. What's the equivalent in Java explorer in Eclipse IDE? Where does it store the folders/resources and their physical paths etc? ...

Android emulator does not start in eclipse

Hi I just installed the whole shebang in order to develop android apps in Eclipse (I'm running 64-bit gentoo). Everything seems to go fine, and I created the dev group's hello-world example: package com.nfshost.flyingmonkey.android; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class He...

Eclipse 3.5+ - Annotation processor: Generated classes cannot be imported

I am using a 3rd party annotation processor for generating meta-data code (.java files) from the annotated classes in my project. I have successfully configured the processor through Eclipse (Properties -> Java Compiler -> Annotation Processing) and the code generation works fine (code is automatically created and generated). Also, Eclip...

Eclipse debug : Step Into/Step Over

I want to debug the whole flow of a java program .What is the difference between F5 and F6 in eclipse view in this case. ...

BIRT 2.3.2 to 2.6.0 upgrade error

I am getting the following error when I try to upgrade the BIRT version that is embedded in my custom web application java.lang.NoSuchMethodError: org.eclipse.birt.report.engine.api.EmitterInfo.<init>(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/...

How do I get Eclipse to play nice with my SVN checkout?

I have an SVN repository checked out and have an Eclipse project set up around it. When Eclipse builds it seems to be unsetting the svn:ignore '*' inside the output directory and also causing the source files to be copied into the output folders. Removing the directory and updating a new one from the repository fixes it until Eclipse bui...

Unable to install Eclipse IDE on my Mac

Hello, I'm trying to download Eclipse IDE for Android development. I've downloaded the setup but whenever I try to open the dmg it gives the an error saying: "Can't open the application Eclipse because it is not supported on this type of Mac." The Processor of my Mac is 1.83 GHz Intel Core Duo and version of my Mac OS X is 10.6.4. ...

How to use xdebug with eclipse IDE for PHP

Hi my PHP project is set up on a remote test machine. I need to debug it using eclipse IDE. How shall I progress. I came to know i should prefer Xdebug rather than zend debugger. Please clarify my doubt. ...

Eclipse can't run my Makefile

I'm writing a C project in Eclipse and while trying to run it I get the following error message: (Cannot run program "make": Launching failed) My Makefile is: all : GenericHashTable.o TableErrorHandle.o gcc -Wall GenericHashTable.o TableErrorHandle.o -o all GenericHashTable.o : GenericHashTable.c GenericHashTable.h TableError...