eclipse

CVS - partial merge

I have some files in branch b1 that have gone trough several revisions. E.g., r1, r2 and r3. I want to merge those files into HEAD but only changes made in revisions r1 and r3, not the ones in r2. With eclipse I can merge only the changes that I want manually and then I can save the file and commit the changes to HEAD. How can I later me...

Refactoring a function definition

Hi, I am using Pydev on Eclipse to write python code. I am new to Pydev and to Eclipse. I love the feature where by I can use rightClick -> Refactoring -> Rename... to rename a variable. I was wondering if there is something similar to change a function everywhere in the project, if I change its definition. For example, suppose I ini...

Would you recommend Eclipse over VS 2010 for C# Development?

I might have to address some development improvement projects in C# in the near term. Presently, we have Visual Studio 2010 licenses available, but you are free to use whatever tool you like. As I'm pretty familiar with Eclipse (and I like Mylyn), I'd like to know if someone here had experience with both environments and can share some ...

ActivityManager: Warning: Activity not started, its current task has been brought to the front

package supa.mack.doppler; import java.util.Set; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; import android.bluetooth.*; import android.widget.Toast; public class doppler_test extends Activity { TextView o...

Is there an eclipse equivalent to emacs M-/ (dabbrev-expand)?

To quote emacs help, M-/ is: (dabbrev-expand ARG) Expand previous word "dynamically". Expands to the most recent, preceding word for which this is a prefix. If no suitable preceding word is found, words following point are considered. If still no suitable word is found, then look in the buffers accepted by the ...

Creating/Running Android Virtual Device through Eclipse with networked user profile

Our user profiles are stored on a networked share (\shared-server\clientdata$\username). When I create an AVD through the SDK and AVD manager everything seems to appear to work correctly. When I try to start it I get the following errors: emulator: ERROR: unknown virtual device name: 'test_avd' emulator: could not find virtual device ...

Maven repository for BIRT 2.6.0

Is there a Maven repository for BIRT 2.6.0 that I could point to? ...

Buil Android Lite Version

I am working on an Android game, and want to release a Lite version with limited features as well. Is there a way I can configure Eclipse to build a second package? Or will I have to have a separate set of code to build the lite version? ...

Eclipse, change popup text background color when hovering the mouse on a keyword

Ubuntu 10.04.1 new theme has by default windows background colors set to black. I don't want to change that. In Eclipse, the interface didn't change much due to 10.04.1 - except one annoying thing: when the mouse stops on a keyword - variable for instance - the type (...) of that keyword is displayed in a small pop-up window. However, ...

SVN: Problems with tag creation in Eclipse with Subversive

Hello, I'm trying to create to create a tag in svn repo for my project. I use Eclipse and subverive plugin. Every time I try tagging, I get the following error: Tag operation for some of selected resources failed. svn: Commit failed (details follow): svn: No write-lock in '/home/project/directory' Where /home/directory is a dir...

Eclipse and SubClipse: How to deploy my own package with svn to a TomCat server?

I'm using SubClipse for Eclipse for my project. And in this project I've added my own package "com.mytestpkg.www" I then use TortoiseSVN to deploy my project on the TomCat server where the project is running, because i the easily can update the site with "SVN Update". But using this method I always have to manually update my package b...

Eclipse PDE and log4j.properties?

I have created an eclipse PDE project and have added log4j as a dependency using the slf4j-api and slf4j.log4j12 bundles. In a class I have created the logger: import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class MyTest { private static final Logger logger = LoggerFactory.getLogger(MyTest.class .getName()); ...

Why is the Eclipse JSP editor uncapable of double-click selecting in a reasonable manner?

I'd like to double click 'user' in this string and then only "user" should be selected, as it's the only behaviour which makes sense in a Java environment, but (stupid) Eclipse selects the whole string between the quotes. This is still present in Eclipes Helios. Maybe I'm missing out something but I didn't find a setting which allow...

Eclipse junit testing in the same package

Hi, This is a relatively open question. If I have built an application in a project in Eclipse and I then want to test this project, should I create the JUnit code within the same project or create a seperate project. For instance... ShopSystem maybe the name of my main project - should I create a project called say, ShopSystemTest? ...

Eclipse PDT 2.2.0 does not track Symfony classes

Hello, My last version of Eclipse PDT does not track symfony project code and so i cannot use autocomplete and search class actions. I have last version symfony 1.4 included in my project's /lib dir. (I'am teaching symfony now with a Jobeet reference project to be concrete). THX ...

Can my Eclipse launch profile reference its containing project?

Hi all, I would like to add my Eclipse .launch files for JUnit tests to source control, but it doesn't work because I often checkout the containing project with a different name than it was committed under. The Eclipse .launch files for JUnit tests contain an attribute "org.eclipse.jdt.launching.PROJECT_ATTR", which seems to support no ...

Newbie problem: Unable to launch Android application in console

Hi, as a newbie, I tried out the HelloAndroid example at developer.android.com. After apgrading the UI to XNL layout as described, I get these error messages in the console log: [2010-08-26 11:44:49 - HelloAndroid] WARNING: Application does not specify an API level requirement! [2010-08-26 11:44:49 - HelloAndroid] Device API version is...

Problem with Hibernate template

Hello, I use hibernate for save, update and delete data in my database, but I have some problems. For example I have a request for save or update my data in database getHibernateTemplate().saveOrUpdate(client); getHibernateTemplate().flush(); When I launch my server (TomCat) for the first and I save my data, all is okay, in my data...

Remote development.

Hi, I need IDE for remote debug. Local host on Windows xp and remote is on Linux. I doubts between Eclipse and netBeans EDE. Can anyone give me advice with that? ...

LogCat like view in Eclipse for non Android development

LogCat is a nice tool for Android development. Wonder if similar tool with multi-tab logs filtering exists for normal Java development? Or may be there is some hack to send logs to LogCat from normal Java project? ...