eclipse

How to change credentials for Hg repository in Eclipse?

This is exactly the same case as this one, but with Hg instead of SVN. I have MercurialEclipse installed, and I have changed the password of my remote repo. Now when I synch it fails. I have not found any conf file in "C:\Documents and Settings\%USER%\Application Data..." about Hg. I have deleted the .keyring eclipse file and restarted...

How do I get the file path of the open workspace for developing plugins in eclipse

This is a question specifically about plugin development for the Eclipse platform: I need to implement persistence without hardcoding the name of the datastore I am using. I want to be able to have multiple instances of eclipse with my plugin running at the same time with independent datastores. One way of doing this would be to use t...

Debugging Maven Web Application on already installed Glassfish using eclipse

Hello, My problem is with respect to debugging web application on an already installed glassfish using eclipse. If I create a web project using eclipse then eclipse will let be deploy and debug application on an already installed glassfish application server. However, if I have created a web project using maven archetype, eclipse does ...

How to install SVN in Eclipse Java EE IDE on Ubuntu

I just installed Eclipse IDE for Java EE developers on my Ubuntu system. Is SVN already part of the Eclipse package? If not, How do I install SVN from Eclipse - so that I could create a new project from files checked out from a repository? Do I need to download and install a subclipse package from tigris? Can't I do it from within...

can eclipse plugin project depend on java project

I have an eclipse plugin project which dependes on java project in my eclipse. usually what I did is export the project as jar and use it as-is in the plugin. but this requires manual work. can I have a reference from my plugin projct to a java project that will be both compile-time and run-time dependency ? I saw a similar question, but...

BIRT, repeating chart in list

Hi, I have a problem using Eclipse BIRT, i'm trying to create a list with group headers including a chart relevant to the specific group header. So lets say i'm trying to create a list with all employees including their sick hours monthly in a bar chart. Name [CHART], Contract hours, Division, job Name [CHART]...

Adding a progress bar to webview

Hi, I have been trying to put a back button progress bar in a webview and keep the url loading within my app instead of using the android default web browser. If I manage to keep to browsing within the app and keep the back button the progress bar never shows up if I manage to get the progress bar to show up the code at the bottom for ...

Automatically version JAR's in Eclipse

Hi. Is there any functionality in Eclipse (similar to Visual Studio), to automatically tag the JAR's with increasing version? I googled for this first, but didn't find any specific answer. Thanks! ...

In Eclipse, any way to start application in more than one emulator at the same time?

When testing Android layouts, I'm constantly building for three different emulators from Eclipse (with ADT), so I have to run three times and then select each one. Is there any configuration or plugin that allows me to press Run once and the application is started in all three? ...

Alter properties of a menu item in Eclipse Plugin?

I am trying to modify the behaviour of File -> Refresh in the menu bar of my Eclispe plugin. I am effectively trying to override the activeWhen behaviour of the "org.eclipse.ui.file.refresh" command, so that it is always active. There seems to be plenty of information on creating these menu items but very little on overriding them, any ...

How to get around eclipse toolbar rationing?

By default, eclipse only puts items in the toolbar I never use. With customize perspective, I am able to take these out, but I am not allowed to put in commands I actually use regularly, such as Search File, and a a bunch of SVN commands, ... and now when I select 'previous edit' to put in the toolbar it doesnt show up. Is there a way ...

m2eclipse buildpath mess up

Hi, Being a newbie with maven, I've set up a new project with the archetype "webapp" and try to build from that. My project structure is as follow : src/main/resources for production classes, and src/main/test for unit tests. Everything is working fine but when i use the m2eclipse menu "update project configuration", the build-path mes...

Query Atl transformation HOT

how to create a query using an ATL transformation in accordance with the ATL metamodel (to understand a HOT)? thanks ...

Deploy "exploded" folder to Tomcat in Eclipse

I just installed Eclipse for Java EE developers, Created a New Project by checking out files through SVN from a repository. I was able to successfully generate an "exploded" web app folder through an ANT build. How do I deploy this exploded folder (not .war file) to Tomcat? Any configuration that needs to be done? Thanks. ...

Error in "Open in" option in Eclipse

Hello, my problem is: When I try to open a shell or explorer window in my Eclipse using the option "Open in" from the package explorer tab it shows a message "The chosen operation is not currently available". How can I fix this? I use Eclipse Galileo on WinXP. Sorry, I don't remember if this functionality comes from a plugin. Thanks i...

Error creating bean with name 'sessionFactory' : MalformedParameterizedTypeException

ANY advice would be apprecated. I'm stumped... Problem On my laptop, anytime our application tries to load the application-config.xml, I get a java.lang.reflect.MalformedParameterizedTypeException. The EXACT same code works on my desktop and my coworker's desktop/laptop. But on my laptop it throws this error. Since my laptop and des...

Blackberry @Override notation error

In Eclipse, I did: Source > Clean up, and did a clean up according to these rules: Change non static accesses to static members using declaring type Change indirect accesses to static members to direct accesses (accesses through subtypes) Remove unused imports Add missing '@Override' annotations Add missing '@Deprecated' annotations Re...

Java Library Path in Eclipse - Add dll library to multiple jars at once?

I have used the accepted answer provided to the question "How to set the java.library.path from Eclipse?" for setting the library path for a specific jar. In my case, I have about 10 third party jars and each jar depends on the same set of dlls, but I need to do this process for each jar. I can do this manually, but is there any way to ...

The parameter 'foo' should not be assigned -- what's the harm?

Compare this method: void doStuff(String val){ if(val == null){ val = DEFAULT_VALUE; } //lots of complex processing on val } ... to this method: void doStuff(String origVal){ String val = origVal; if(val == null){ val = DEFAULT_VALUE; } //lots of complex processing on val } For the form...

Multi-module deploy with Maven, JBoss and Eclipse

Is there a way to do incremental deployments with these three tools when in a multi-module project? Example of Maven project: project project-data project-service project-webapp The above are Maven modules with dependencies between them. The project-webapp module contains the .war file, but I don't want to create a new .war file eve...