eclipse

ClassNotFoundException when developing Eclipse plug-in

Hi! I'm working on an Eclipse plug in (basically it gets posts from social networks such as Facebook and Twitter). I have various plug-in projects and I have one of them which makes use of another. I include the latter project in my build path and it compiles ok. However when I run the projects (Run As --> Eclipse Application) I get a ...

Best way to add Activity to an Android project in Eclipse ?

When adding an activity to an existing Android project, I manually create a new class - is that the best / preferred way? How do others handle that? ...

Importing files from Subversion into an existing project

I am trying to import files from a SVN repository into an existing Eclipse project using Subclipse. Unfortunately, I can only find a way to create a new project from a repository. I know about Tortoise SVN, but it is so much easier to remember to add files when version control is imported into the IDE. Is this possible? ...

Eclipse java.lang.ClassNotFoundException: com.google.gwt.dev.About

I have a trouble with exception on importing (compiling) some GWT project into Eclipse. My environment is Mac OS X 1.6.2 Eclipse IDE for Java EE Developers 1.2.1.20090918-0703 epp.package.jee Google App Engine Java SDK 1.3.1 1.3.1.v201002101412 Google Web Toolkit SDK 2.0.3 2.0.3.v201002191036 Exception Stack java.lang.ClassNo...

Eclipse > CDT + Cygwin > How to configure a C++ compiler?

So, I've been looking all over. I can't find anywhere that talks about specifically how to configure Eclipse + CDT to run the gcc / gcc++ compiler. I am running Eclipse on a windows box, but I've installed Cygwin. [edit] I've installed Cygwin, and I've added C:\Cygwin\bin to my path environment variable. I'm now getting this error...

GWT Compile "Add an entry point module" dialog

Can anyone explain where the Eclipse GWT plugin defines it's entry points? In an attempt to get my old GWT project working again with GWT 2.0, I created a default GWT 2.0 project in Eclipse and was able to run it successfully. It's the one that asks for a name and calls the 'greet' servlet on the server, which responds etc... so far so ...

After I remove the apk, whenever I start Debug it tells me the package is not installed

I have my Emulator open, and using Command Prompt I remove my application. I didn't closed the Emulator. Then I go to Eclipse and hit Debug, but doesn't deploy the apk to the emulator, just tells me the package not yet registered with the system. New package not yet registered with the system. Waiting 3 seconds before next attempt. Re...

Eclipse (STS) + Maven

I basically have 2 questions: Is there a way to invoke maven console from eclipse? (where I could write eclipse:eclipse, and it started building eclipse project) Where does STS unpack it's maven? I'd like to add that path to env variables, so that I could use it from my windows console. ...

Starting Selenium with custom Firefox profile from Eclipse

Hi, I'm running Selenium tests from within Eclipse, but I can't load a custom Firefox profile. Most sources suggest I need to launch the Selenium Server like this: java -jar selenium-server.jar -firefoxProfileTemplate </path/to/template/> But when launching my test from within Eclipse it doesn't use that - the tests will run if the ...

GWT - adding external java classes to client project

Hello I have a GWT project. Client code is located in the "client" dir. I want to attach an external java classes (mainly plain POJO DTO classes) that are in external directory. How to configure the gwt.xml file? I get errors of this kind: [ERROR] Errors in 'file:/C:/development/projects/CodeSpaces/LocateMe/LocateMeWeb/src/com/dominol...

Creating a dynamic eclipse "Welcome" page button

Hi i am wondering, whether the code to create the buttons shown at the eclipse "Welcome" page can be found somewhere. When you create a new workspace in eclipse, a "Welcome" page is shown at the very beginning. The page shows different type of buttons like, "What is new", "Tutorials", ... I want to use these type of buttons, but was n...

How to get a modified generated Android IInterface file in an apk?

I'd like to add a step to the Android build process in Eclipse, which will modify the generated IInterface files that are based on aidl files. I've written a custom rewriter, which does the rewriting. I inserted this rewriter as a custom builder in Eclipse between the Android Pre Compiler and the Java Builder. The problem is that the ...

maven plugins stored where

Where are maven plugins stored? in the local repository as well? what happens if you build your application with eclipse? does it store the plugins inside the eclipse/plugins folder or still in the local repository? ...

Eclipse shortcut ctrl+m behavior

In eclipse we have the ctrl+m shortcut for maximizing windows. But when you have two editors opened side by side, it maximizes both editors. Is there anyway to change the default behavior of ctrl+m so it only maximizes one window? (Personally this is the behavior i need 9 out of 10 times using ctrl+m) Thanks. ...

SWT "slim look" buttons and scrollbars

Eclipse 3.5 (on the Mac, at least) now has a slimmer look to its buttons and scroll bars, whereas previous versions' buttons and scroll bars used the larger, "puffier" look. I would like to adopt this same look in my RCP app, but I can't find in the SWT or JFace APIs anywhere how to force the widgets to use this slimmer look. How is th...

is there a way to get django tests + buildout run well integrated with Eclipse/Aptana?

Hi, it's fairly easy to set up Eclipse to run a django project's tests created with django-admin startprojects, we whould just point a Run command to ./manage.py, and supply the necessary arguments. but what can I do if a project is built using buildout? of course, bin/biuldout creates the handy bin/test-1.1 and bin/test-trunk files, ...

Parent and Child Figures in Eclipse GEF

How do you make one figure a child of another in a GEF applcation? ...

Can/Should I name a Java project with an ampersand?

I'm creating a new Java project for a concept/construct that's usually referred to with an ampersand (e.g. PB&J). Is it ok to name the project that? Should I avoid it? Are there any symbols that are not allowed in Java project names? Are there any symbols that are generally avoided? Where do symbols come in with regard to Java project na...

Configuring SpringSource Tool Suite wth AspectJ

How can I configure the SpringSource Tool Suite(ver 2.3.0) Spring project to accept .aj (AspectJ) file? Currently it does not recognize .aj file. And I cannot add *.aj file because it's a Spring project, not an AspectJ project. ...

How to avoid no main class and no class def found error using DropBox and Eclipse for Java

I use Eclipse to write Java code and use DropBox to sync my code with others' across our multiple computers. Most of the time, everything works as expected: if anyone makes a change on either end, the change is saved and when the other person refreshes the Eclipse workspace, the changes come through and can be viewed and run successfully...