Debug javascript in Eclipse
How can I debug javascript in eclispe. I am using eclipse 3.2.1. Everytime I click on the side it gives option for adding bookmark but no break point. Could youone assist me on this. ...
How can I debug javascript in eclispe. I am using eclipse 3.2.1. Everytime I click on the side it gives option for adding bookmark but no break point. Could youone assist me on this. ...
JSDT (Javascript Development Tools) is an Eclipse project aimed at implementing the JDT APIs for Javascript. Its early demos were really impressive, but it seems to not have had any releases since 2007, without any mention of what happened to it. Does anyone know its status? ...
Hi, I have a question regarding the development of liferay portlets using the liferay plugin SDK. My question goes mainly in the setup of the development IDE. The suggested one would be to use Netbeans IDE which I also tried out, but it appears to run very slowly on my machine while Eclipse is quite performant. The setup for Netbeans ID...
I'm new to debugging with Eclipse. I try to debug my app to know where it segfaults. The problem is that Eclipse breaks within the STL, which is very annoying. For example: I created a breakpoint in my source file on line 134, which works fine but if I hit F6 for "Step Over", Eclipse/gdb breaks in basic_string constructor used in the ...
I have created my ActionScript source files in a folder on a Mac (I normally use PC), and somehow managed to make an Eclipse/FDT project that can see them. I now need to move them into a svn checkout of an existing project to get them under source control. I just can't work out how you do this without losing all references in the proje...
I have installed the Maven for Eclipse plugin from Sonatype. (update site: http://m2eclipse.sonatype.org/update/) I am creating a Maven project, and choosing to use the groovy-maven-archetype as my starting point. However, halfway through, I am seeing: 04/03/09 12:52:28 GMT: [FATAL ERROR] org.codehaus.mojo.groovy.stubgen.GenerateStu...
I'm developing PHP on a mac. As per other suggestions, I've set the workspace to be in the HTDOCS folder of MAMP. Unfortunately, this means I cannot use links to '/' as I would in production. Any suggestions? Relatedly, the workspace seems to prevent references to build paths outside the workspace, yet I would Like to keep my sensitiv...
I am creating an eclipse plugin, and I need Class object of selected file, not IType. Is it possible, and how is the best way to do it? Edit: when I think about it, the best way is to add it like run as (like junit, profiler, or other plugins are doing). I suppose they must have access to Class (if X is class in question), because they ...
I commonly split my Eclipse editor into two vertical panes. When I use Ctrl-Tab (or Ctrl-F6) to move between editors, there is no way for me to select which pane the editor (tab) should be displayed in. Is there a keyboard shortcut to do this? Currently I have to drag the editor tab to the pane where I want it. ...
I recently installed KDE4.2 on my Fedora 9 machine, which already had Gnome, and have been trying to run Eclipse 3.3 (Europa, which ships with a Fedora Distro), but without luck. Eclipse runs fine when I use gnome session, however I need to use it in KDE. I am attaching the screen-shot taken after the crash and some information about my...
I'm using Eclipse with Subversive SVN Team Provider 0.7.0.v20080425 as well as the latest update of Subversion installed on OSX 10.5.6. My problem is that whenever I add a project folder to Eclipse enabling the Team integration it disables the SVN functionality from within the terminal throwing me the following error message : svn: ...
Duplicate http://stackoverflow.com/questions/285793/why-should-i-bother-about-serialversionuid Using Eclipse for some java work right now. My class name is underlined in yellow. I can either suppress the warning or just add the frickin serial id. I dont care either way (or should i?), but what exactly IS this serial id? thanks ...
Is there a way to get PHPUnit auto-completion to work in Eclipse PDT without including the libraries in your project? ...
Sample case: class Test { final Set<String> uniqueNames = new HashSet<String>(); } But w/ the help of a plugin can generate methods like this (similar to Generate getters/setters) class Test { final Set<String> uniqueNames = new HashSet<String>(); public boolean add(String name) { return uniqueNames.add(name); }...
I've been using EasyEclispe for a long time, and I've noticed that they haven't really kept up-to-date with the main Eclipse distro. So I was wondering if anybody knew of an EasyEclipse-like distribution that would contain common things people in different areas of Java/Groovy development might need. ...
I am writing an Eclipse plugin, and in response to some action I am interesting in starting a series of operations (within a separate job). One of these operations is to request the user to provide a filename, which I'm trying to do with the JFace JDialog. However, I'm not clear how to do this in a modeless way; for example, where do I ...
I'd be interested to find out about any automated processes that people have for ensuring that the project classpaths for the ant and eclipse configurations are in synch. In my case, I want the classpath defined in the ant build file to be the master configuration, since its used for our production builds. As part of the build i'd like t...
Hi, I'm developing my own Eclipse plugin and came across a very strange behavior. In some very specific cases, Eclipse won't quit when I close the workbench. It just stays hanging until I kill the process. This happens when running through PDE and when running as a regular installation. It is really hard to provide more details and I ...
I'm trying to get hidden files to show in Eclipse (namely, a .htaccess file), and the answers point to doing something in the 'Package Explorer'. I'm using Eclipse PDT 2.1 and it's not apparent to me what / where that is. How do I get to this fabled 'Package Explorer' ???? ...
Is there a way to build my app using one version of the JRE but have my source conform to another version? I would like to debug my app locally using 1.6 because OS X's 1.6 is much better than 1.4.2, but because of backwards compatibility reasons we actually ship using 1.4.2. ...