eclipse

Please help me solve this Runtime Exception in Eclipse

I am using Eclipse and i-series Navigator for database. when I ran my application it is showing: Exception=Exception001{Id=0,Message=java.lang.RuntimeException: Failed to connect to queue manager,Severity=2}], ServiceID=GetCustomerProfile2,Status=2,TransactionID=1} Please suggest what to do? ...

enabling debugging for web browser (as external tool ) in eclipse

I am developing APPLET and I have eclipse set up to launch web browser (firefox). I have now External tool that starts up FIREFOX and my applet. I have a separate Remote debug option configured ok. However, debugger needs to be launched separately. How can I combine these two to same hotkey? Now I press ctrl+f11 to run external tool(f...

Find unused classes in a Java Eclipse project

I have a large Eclipse project in which there exist several classes which, although they ceased to be used anywhere, were never marked @Deprecated. How can I easily find all of these? ...

JSF Validation not finding custom ResourceBundle class

Hello, I have a custom ResourceBundle class org.example.web.UILabels.java which works well in running code but the JSF editor in Eclipse is not finding it, I assume the editor/validator is only looking for properties files by the name. This also means I no longer get type ahead find on the resources which was very nice to have. Any ide...

How to get Eclipse tools working nicely with JSP?

How do you get Eclipse to work properly with JSP files as it does with Java files? Specifically: Eclipse "Find references" (Right click on method, references, workspace) doesn't find references in JSP files. Eclipse refactoring (Right click on method, refactor, rename) doesn't rename references in JSP files. We're using Eclipse 3.2...

Eclipse Ganymede startup on 64 bit vista is really slow

I've just changed computers at work and now have a really beefy 64bit Vista os. Currently I'm still slogging through the pile of quirks (like no 64bit drivers for ms access) and I've noticed that my startup time for eclipse is a LOT longer than it was on 32bit Vista. I have almost nothing in my workspace yet, so that knocks out most of...

Eclipse PDT

i downloaded eclipse pdt, seem it only support php project ??, can made it support php and java either? i dont want install 2 separate version thanks. ...

Easiest way to Filter Eclipse Console Output text

I'm asking this in relation to Flex Builder, but it might apply to Eclipse in general. Trace statements in Flex Builder get sent to an Eclipse Output Console. What is the easiest way to filter this text on the Eclipse side? Specifically, I'd like to be able to filter (ignore) lines by patterns. I came across Logback, but it seems like...

How can I run a Maven webapp in Eclipse when I use profiles to populate properties files at build time?

Here is an example profile in my POM: <profiles> <profile> <id>QA</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <jdbc.url>jdbc:mysql://127.0.0.1:3306/SomeDB</jdbc.url> <jdbc.username>webapp</jdbc.username> <jdbc.password>somepassword</jdbc.password> </properties> </profi...

eclipse jface filtered items selection dialog with multiple-column table

I'm coding up a dialog box for an Eclipse plug-in much like the built-in FilteredItemsSelectionDialog from jface, except that the items that can be selected are (basically) made up of three strings, so I would like the table to show three columns that are sortable in addition to being filterable. I started pursuing the cleanest solution ...

Elgently ignoring netscape.javascript.JSException during development

Hello, Eclipse allows you debug applets using sun.applet.AppletViewer. It will actually start the applet, run it and emulate complete browser runtime. If you have javascript manipulation code in your applet this will cause JSException because the present context is not a real JS enabled engine. How would you solve this issue? I can see...

Using Eclipse Templates for Actionscript

One of my favorite features in Eclipse is the templates in PDT. In case you don't know what they are, think of writing "function" and having Eclipse write all the syntactical features and let you jump from variable to variable with a tap of the tab key. So I'm starting to do write AS3 in Eclipse and I miss having the templates at my fing...

eclipse coloring : what is the pref item for background color of all occurances of selection

In Eclipse, when a identifier ( function name or variable etc ) is clicked, the background of that identifier and all other occurrences of that identifier are given a different background color. Can anybody tell me, what is the preference item for changing background color for this. ( last this remaning in my dark eclipse settings ). ...

Eclipse Configuration Problems

Lately, I am trying to use Eclipse more often, but so far I have shied away from it because I found it so difficult to install new packages. Whenever I find and try to install a new package, the errors panel flashes a batch of configuration errors. It requires this or that package to install this one. And when I find that package, it tur...

How to convert xsd to ecore (EMF)

What is the best way to convert .xsd-files into .ecore-files? Is there an eclipse plugin for that? ...

How to set the editor window tab width in eclipse? (not whitespaces)

I wondered if it's possible to set the editor windows tab width in eclipse. I hate it when I want to close several windows in a row and I always have to move the mouse. Can I set eclipse to use only ONE width for every window tab? ...

Remove project .jars from project explorer view in Eclipse

the list of jars just takes too much place. Can I collapse it or hide it? ...

Eclipse Plugin Fragment

Does anyone have a "hello world" sample or tutorial for creating an Eclipse plugin fragment? I have a working host plugin that, for the sake of simplicity, is just this... public void start(BundleContext context) throws Exception { System.out.println("Hello...."); super.start(context); plugin = this; } public void stop(B...

Can I program Java with Flex Builder?

I have no experience with Java, but I want to learn it. I have been using Flex Builder standalone for a few months now, and am familiar with eclipse now. So since Flex Builder is basically eclipse, can I program Java with the same copy or do I need a new installation of eclipse to program Java? Also if anyone can point me to a tutorial t...

How to reuse eclipse launch file in a new project

I just checked out an svn project in eclipse as a java project. There is are couple of run launch files in it that i want to reuse but dont know how to point 'Run' to see those launch files or use it. Any tip? thanks ...