eclipse

type a simple "©" in STS on a macbook pro

Hi, I have a simple but realy annoying problem: I just can't manage to type a simple "©" in STS (SpringSource Tool Suite) on my macbook pro. In any other editor (even plain eclipse) or application I use "alt + G" as a shortcut, but this does not work in my STS 2.3.3.M2 and was also not working with 2.3.2. Any idea whats wrong? thanks ...

Java compiler in Ubuntu

I've set up Eclipse in Ubuntu 10.04. I currently have the OpenJDK JRE installed but don't have the JDK needed to compile. However, the code written Eclipse still compiles. Is this a standard compiler included in Eclipse? I've searched through the package manager and don't seem to have any of the JDKs installed... Note: running 'javac' ...

Testing FPS using Android plugin for Eclipse?

Hi Ive no doubt this question may have been addressed before but how can I turn on a framerate monitor to use when I run my programs using the android emulator so I can see exactly what my android game is achieving at a given time? thanks ...

[Eclipse] Application does not specify API level

I am just beginning to use Eclipse for Android applications. I have installed Eclipse 3.5.2 and Java 5 AVD is Android 2.1 API 7 My initial Hello Android program ran fine but will not run again. getting the following error: [2010-07-25 09:47:31 - HelloAndroid] WARNING: Application does not specify an API level requirement! [2010-0...

Problem with .cod deployment to simulator

Hi Everyone: This is a re-post of a topic on the Blackberry Development Forums, but I wasn't getting any answers there, so I thought I would try SO. I have an in-house library that I developed called Ichabod that is required by one of our applications, Spyder, which runs on the Blackberry 4.5.0 operating system (our original target was...

where to download glass-fish plugins for eclipse 3.6 (Helios)

Dear all, Would you please help me to download glass-fish plugins for eclipse 3.6 (Helios) I tried 'https://ajax.dev.java.net/eclipse' URL in new software install in the eclipse, but it doesn't work and show me 'Cannot complete the install because one or more required items could not be found.' Error Regards ...

Copy to restricted folder with Ant (using Eclipse in Ubuntu)

Using Eclipse in Ubuntu Linux. I'm creating an ant task to delete a directory in my apache localhost directory (/var/www) and then copy in files from my Eclipse project. I have: <project> <target name="deploy"> <delete dir="/var/www/gds"/> <copy todir="/var/www/gds/src"> <fileset dir="src"> </fileset> </copy> <copy tod...

Eclipse hangs intermittently on PC without internet connection.

I've encountered this problem since Eclipse 3.2, but in the newer versions the problem occurs more often. The eclipse IDE will be unresponsive for a few seconds (up to a minute?) whenever I access certain configuration menu items or when eclipse parses an XML file which contains xmlns variables pointing to some internet URL. (eg; xmlns:...

Debuging J2ME application in Eclipse with Emulator

I want to debug in J2ME MIDlet application in Emulator using S40 6th Edition SDK. I've tried to put breakpoints but emulator doesn't break on them. Is it possible? ...

How to set Tomcat or JBOSS or Glassfish as App-Server for GWT Web Project in eclipse

Dear members, How to create and run GWT web project in eclipse with tomcat or another app-server? I created a Gwt Project and when i run or debug it, eclise did use GWT hosted mode server. I can not find and configuration in project properties to select tomcat or another server for the project/ Regards ...

How to find out why Eclipse is freezing?

Every time i run any junit or any job [ spring-batch ] from eclipse. It hangs for around 10-15 mins. After that everything goes fine. Now, i would like to know in such cases what are the steps you take or what are the tools you use to rectify the problem. Till now i am unable to resolve the problem. Please help. Should i post the Thread...

Blackberry extrenal library problem (module not found)

I am using eclipse. When I add an external jar (import it.sauronsoftware.ftp4j.*;) it seems to be ok, I reference the external jar by right clicking project and the properties. When I instantiate an FTPclient opbject and run in the simulator I get "module not found". Somebody on a different forum suggested creating a new library and add...

SVN - how does removing a bin folder cause the src folder to be removed instead?

Hi all, There was a bin folder in version control with a bunch of .class files and other junk that should not be versioned. Could someone please explain to me how the following commit: 529 svn rm --force bin/ 530 svn ci -m "Bin should not be under version control." Leads to the following: Revision 249 Author: ndunn Date: Mo...

Best practice for multiple project setup with m2eclipse

Example scenario: I have 2 projects, "common-project" and "application-project". The application-project depends on the API provided by common-project. There are also 3rd party jars (example guava) used by both projects. I am trying convert to using maven and m2eclipse, but am unclear on the best approach. Currently, my maven-free setup...

Eclipse/SWT: Rectangle taking up entire canvas.

I am writing an Eclipse RCP-based application and am trying to draw a rectangle on top of a ViewPart. However, the rectangle seems to take up the whole screen even when specifiying the bounds. The following is my code. public void createPartControl(Composite parent) { Shell shell = parent.getShell(); Canvas canvas = n...

Line matches not showing during File Search in Eclipse 3.5 / Zend 7.2

Somehow my Eclipse (Zend 7.2) doesn't show the line matches in the treeview when doing a File Search. It shows the files that match, but I can't unfold it to see what lines the matches are on. On my other computer at work (same software) it does work like it should. Is there any way to reinstall the Search-module or does anybody know w...

Android creating themes and styles

I would like to define a theme for my first Android app. I use Eclipse and I follow this tutorial but have problems. Steps: A. I create the values/styles.xml file with content <?xml version="1.0" encoding="utf-8"?> <resources> <style name="default_splashScreen"> <item name="android:background">@drawable/bg</item> </style> </r...

with eclipse 3.5.2 - android sdk - where are the log files from a crash

I'm new to this android world and I'm finding that eclipse 3.5.2 is crashing constantly. There is no real rhyme or reason that I can see. Sometimes the crash occurs with the layout manager, sometimes when I try to search, other times when I attach a debugger. I thought that there might be log files that could help me track down the pr...

Eclipse Autocomplete for top level object?

I have a "Pear" object that inherits from "Fruit" When I press (autocomplete) CTRL+Space I get all the members etc for both Fruit and Pear. Is there a key stroke for just showing me the "Pear" members? ...

Why is IJavaProject.findPackageFragmentRoots returning an empty array?

Every time I call IJavaProject.findPackageFragmentRoots(IClasspathEntry cpe) and pass it an IClasspathEntry of kind CPE_PROJECT, it returns an empty list. I paused the debugger and ran the following lines in the Eclipse Display view to see what was going on: IClasspathEntry cpe = javaProject.getRawClasspath()[8]; cpe.toString(); (ja...