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...
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?
...
For example: add own functional in pydev package explorer, use pydev python code parser.
...
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.
...
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...
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
...
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">
<html>
<head>
<meta http-equiv="Content-Ty...
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 ...
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!
...
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!
...
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">\
<item android:state_pressed="true"
android:drawable="@drawable/happycarrot" /> <!-- pressed -->
<item android:state_focused="true"
android:drawable="@d...
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...
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...
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...
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 ...
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="...
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)
...
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: ...
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...
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...