eclipse

Why does my Eclipse project have phantom debugger breakpoints?

I've got a small project which, when run in the Eclipse debugger, always seems to stop in FileInputStream.class line 106, where files are opened. There are no breakpoints set, but Eclipse behaves exactly as if I have a breakpoint here. If I clear all breakpoints, it still happens. I have a second much-larger project in the same Eclips...

Java Restful Web Service Tutorial with Eclipse and Tomcat

Hi, I was wondering if anyone could post or know of instructions on creating a simple restful web service with eclipse and deployed on tomcat. ...

Searching For Non Final Static Variables in Eclipse

I am programming in Java in Eclipse. I was wondering if there is a way to search for all non final static variables in my code base. For example: private static int MY_VAR = 0; But not: public static final int MY_CONSTANT = 1; ...

Reload Android application in emulator without restarting emulator in Eclipse?

Is there a way to reload an Android application in the emulator without closing the emulator, saving any code changes, and running the emulator again? If I make even a simple change to the layout, it takes about 30 seconds by time I run it in Eclipse and Android "boots", and I can unlock the emulator to run the application. Is there an...

Eclipse MyLyn with BugZilla: Will the BugZilla installation need to be modified/configured?

Hi, I'm interested in MyLyn. I'm using Eclipse Ganymede and I have access to a BugZilla installation for the project I'm working on. I wonder if the BugZilla installation will have to be changed/configured in any way or if I'm able to use MyLyn against it "out of the box"? Will I have to setup some special kind of MyLyn server or could...

What is the easiest way to wrap a Stored Procedure in a Web Service?

We have a Legacy system that contains a number of stored procedures that we'd like to expose to other applications as web services. We are building the web services with JBoss. The stored procedures can run from Oracle, DB2 or MS SQL Server databases. JDeveloper has a wizard to generate the stubs and deploy to an ear file that would ru...

Problem with TeamCity plugin in Eclipse

The problem is this: The "Remote Run" option is always grayed out. Anybody know how to fix this? I have made changes to two files, and want to run them, but the plugin won't let me. The same things works fine in IntelliJ, but I really prefer Eclipse, and I'd like to get this working. ...

Recommended Eclipse plugins for Java source code analysis.

Which plugins for Eclipse do you recommended for analyzing your code? Bug finding, unused code detection, suggested refactoring, ... ...

Do any Eclipse plugins exist for COBOL development?

More specifically I am looking for tools for IBM Enterprise Cobol. ...

Validating against a schema that lives inside a plugin

Background: I have a small problem with Eclipse. I'm working on a workbench plugin which has some classes that validate incoming XML data against a schema. The schema lives inside the plugin project in a "./schemas" folder. Questions: When I run the application, how can I read the schema without using a hardcoded path? When the ap...

Eclipse: copy the Java Build Path to a different workspace

In Eclipse how do I copy the Java Build Path to a different workspace? Somebody somewhere wrote that if you copy the project then you have copied the build path also. This doesn't seem to be the case. I've tried copying the entire workspace to a new directory. Opening Eclipse and pointing it to the new directory has all the projects an...

In Eclipse pluging development how do I programatically activate a view?

I have a tree view that is acting as a selection provider. In response to different types of selected items I would like to show a view. (Instantiate it is needed). Can I do this by VIEW_ID and the workbench getViewRegistry? ...

How to highlight the selection in emacs keybinding of eclipse?

I have searched the Web for this, but with no luck. Any idea? Thanks. ...

Is there a way to hide annotations in Netbeans or Eclipse?

Maybe a dumb question, but it would be nice if there was a way to hide or collapse Java annotations when viewing source in Netbeans (or Eclipse). I'm not finding an option and a quick search didn't turn anything up. Is this one of those "you should never want to do that, code folding is a sin!" things? Personally I'd find it useful fo...

Can't install Eclipse plugin

I'm trying to install an Eclipse plugin for Mylyn/Fogbugz, and I get the following error when I try either EclipseBugz or Foglyn: Cannot find a solution satisfying the following requirements Match[requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.swt I'm using Eclipse 3.4.1 ...

Eclipse: How to automate export unsigned application in a batch file

I am developing a game for Android in Windows Vista environment. I want to automate the exporting unsigned application operation in a batch file. So, I wouldn't have to Right click on the project, go to Android Tools and then select Export Unsigned Application Package... anytime I want to run my project. Thank you. ...

Commenting blocks in Eclipse on Mac

How do I comment blocks of code in Eclipse on a Mac? ...

WTP HTTP Preview server - How can I re-configure default server port?

Under Eclipse Ganymede how can I re-configure the default server port (8080) of the Eclipse WTP "HTTP Preview Server"? @Leonel I suppose you never saw the "view" linked to this question, I asked "HTTP Preview Server", not other server views where the port is obviously visible between any other settable option ;-) otherwise I would not ...

How can I change eclipse's Internal Browser from IE to Firefox on Windows XP?

How can I change eclipse's Internal Browser from IE to Firefox on Windows XP? To be more specific I need to change the Internal Browser instead of adding the External Browser through Preferences -> General -> Web Browser. ...

How to run multiple .sql files in Eclipse DTP

I've a list of .sql script files to create Stored Procedures which I'm using the Eclipse DTP to develop. Currently to create/update all these Stored Procedures, I've to open & run one by one from the Data Perspective. Is there a way to create a batch file that run the scripts along the lines of run createSP1.sql run createSP...