eclipse

Django debugging with Eclipse and PyDev

Hi, I just managed to get debugging my django site 'kind of' working in Eclipse. All my breakpoints get caught just fine, but I have to restart the server every time I make a code change. I think this is because I'm using the --noreload argument when kicking off the server. Is there any way to setup Eclipse debugging so that I can chan...

How can I use an Eclipse formatter profile in VIm?

My team has a standard Eclipse code formatter profile. I prefer to work with VIm. Is there any way I can convert this file and use it with VIm? ...

How to use pydev extension point in eclipse?

For example: add own functional in pydev package explorer, use pydev python code parser. ...

listening for page switch events in Eclipse's PageBookView

Is it possible to be notified when a PageBookView switches page? I've dug around in the source code a little, but there doesn't seem to be any direct way of doing it. ...

Some necessary libraries are missing in WAR-File after export from Eclipse - why?

Hey altogether, I took over a project of a college which contains some web services and by exporting the project as WAR-file some libraries are contained in the file (e.g. Axis2) and some aren’t (hibernate, JDBC driver). Also a jar which is added to the class path has not been exported. All libraries are located in folders on the hard d...

Download Glassfish Adapter plugin separately

Dear all, Is it possible to download Glass-fish adapter plug-in for eclipse(Helios) separately not with 'Install New Software feature in eclipse'? Because I want to archive this plug-in and use it on another eclipse instances. Regards ...

Expression Language & Eclipse warning: "items" does not support runtime expressions

i have the following JSP: <%@ page contentType="text/html" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> <%@ page isELIgnored="false"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; <html> <head> <meta http-equiv="Content-Ty...

NullPointerException while working with Android development in Eclipse.

Hi, I'm just getting started with Android app development on a Mac, and I keep getting a NullPointerException everytime I go into Strings.xml to edit it. Here's the steps I followed - Downloaded eclipse 3.5 Installed the Android SDK Downloaded SDKs from Android SDK manager. Created a basic Hello World Project. The project compiles ...

Can maven eclipse plugin to generate artifacts so that src/main is on top of src/test?

When I generate eclipse artifacts, Eclipse shows the source folder in this order. src/test/java src/test/resources src/main/java src/main/resources I would prefer, src/main/java src/main/resources src/test/java src/test/resources Thanks in advance! ...

Changing color of "sticky note" box in Eclipse

In Eclipse, you get a yellow sticky note-esque info box when hovering over code. Since I changed my syntax highlighting to be a dark theme, light colored code does not read on this yellow stick note. Where is the preference for this color located? Eclipse's scattering of color preferences everywhere is extremely hard to use! ...

Android - Image button (XML) isn't working?

I have three images in my drawable folder, and an XML Image Button code: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"&gt;\ <item android:state_pressed="true" android:drawable="@drawable/happycarrot" /> <!-- pressed --> <item android:state_focused="true" android:drawable="@d...

Why does my eclipse fail to start android virtual device, when the files are there?

When trying to start up my Android AVD emulator, I get the following error message in eclipse Failed to start emulator: Cannot run program "/home/james/development/tools/android//tools/emulator": java.io.IOException: error=2, No such file or directory However, the file is clearly there as displayed below james@nevada:~/development/to...

Django and Eclipse, making a portable project

I like Eclipse for a number of reasons. One of them is, when I'm doing a java project, I can copy and paste my project or rename it, to make a new one, and it will update all the names of everything. I'm trying to do something similar for a django project. I can set an APPNAME variable with the following code APPNAME = os.path.basena...

How to get access to Eclipse fileindex/EFS or how to find a specific file with a plugin?

Hi I want to create a Eclipse Plugin which search in all open projects/EFS for a specific file. The first aproach was, to walk over the full filesystemtree, what is not very fast. Now I want to reuse the mechanism behind the "Open Resource" Dialog (CTRL+SHIFT+R) ~ OpenResourceDialog . But how it is possible to access the mechanism/file...

Eclipse 3.6 lag when copy and pasting

Hi everyone, I'm having a strange problem with Eclipse 3.6 where copy and pasting causes a lot of lag (total eclipse lockup for 5-10 seconds). I'm using the Helios 3.6 PHP build but have also tried Galileo to no avail. On .php files editing PHP code, it is fine and there is no delay. Same with .html and .js, but it only happens when ...

Eclipse won't compile, bad class file, wrong version

I am trying to compile code checked out of SVN from another developer. Eclipse has been giving me a lot of trouble lately. Here are my project-specific settings: This is what the compile section of my ant file: <target name="compile" depends="build-common, init" description="Compile files. "> <javac srcdir="${src_dir}" destdir="...

Is this the right way to get content assist for javascript files in Eclipse Helios(JEE)?

I have a JEE project which contains some JavaScript files. I followed the below option to get content assist for Javascript files. Right click the project -> Configure -> Convert to JavaScript Project (only .project and .settings folder of the project got modified) ...

A doxygen eclipse plugIn with automatic code completion?

I'am looking for an eclipse-plugin for doxygen code documentation. I have found the eclox-plugIn ( http://home.gna.org/eclox/ ). I would like find out, how can it automatically generate a "empty" doxygen comment, which could be filled out later or what is the better choice for a documentation eclipse plugIn? For example for a function: ...

EclipseRT/Virgo not appearing in Eclipse Server Adapter list

I'm trying to get up and running with Virgo, and I'm following along with what appears to be an excellent tutorial, but I'm at section 7.2 and I just can't figure out why EclipseRT / Virgo doesn't appear in my list of options. So far I've been using SpringSource Tool Suite (STS) as the guide recommended and have installed all the Spring...

What framework + application server + development environment to use for Java services?

I'm trying to write a Java service which runs 24/7, scrapes content from the web, and stores it into a database. What is the best framework to use for this given that I'd like to... 1.) Have an application server that I can deploy my code to (and have it run automatically). This application server should sit on a separate box from the m...