eclipse

Pydev in Eclipse default working directory

What is the default working directory for my project? I have several projects under my workspace, and a couple of run configurations. I use os.getcwd() and the directory goes to other project's folder, after deleting all run configurations, the directory goes to eclipse's install folder. How to make the default working directory goes to ...

Eclipse Subversive plugin: Why can't I create this branch?

I recently switched from Subclipse to Subversive for SVN integration in Eclipse, and I'm having trouble creating a branch of my source code. I've tried a few different variations of my method, but they all led me to the same roadblock. Basically, here's what I'm trying to do. Navigator pane Right-click on project folder (want to branc...

install Apache common lang 2.5 in Eclipse

Hey A newbie to Eclipse and Java...can anyone tell me how could I install the Apache common lang 2.5 in Eclipse? http://commons.apache.org/lang/download_lang.cgi Thanks! ...

Eclipse Generate Javadoc Wizard: what is "Javadoc Command"?

I want to generate the javadocs for an open-source code-base I'm using. But I'm being asked for a "Javadoc Command" by the Eclipse Generate JavaDoc wizard and the help doesn't explain what this means. Is it wanting the path to the javadoc binary/jar or something else? ...

using StringEscapeUtils throw java.lang.ClassNotFoundException

I followed the instructions in http://stackoverflow.com/questions/3091359/install-apache-common-lang-2-5-in-eclipse to install apache common lang 2.5 in Eclipse. Then we I use the class import org.apache.commons.lang.StringEscapeUtils; writer.printf("<firstname>%s</firstname>", StringEscapeUtils.escapeXml(mystring)); I got ClassNot...

how to add taglibs and jar files in eclipse for autosuggest?

I do not know how do i do this? If I press ctrl + spacebar in eclipse editor , I was able to see jsf tag attributes, .XHTML Attributes and all - now they are gone. How do I enable them? Thanks, ...

how to create the webpage in blackberry using java on eclipse?

what is the process to developwe the webpage on blackberry phones using of java applications on eclipse environment ...

What are the advantages of PEP or Cola? (Eclipse pairing plugins)

What are the advantages and disadvantages of PEP vs COLA as Eclipse pairing plugins? ...

Columns & FilteredTree in Eclipse

I'm trying to create a FilteredTree with several columns with no luck. If I use a TreeViewer the columns work fine but when I switch to using a FilteredTree I can only get it to work if I remove the columns, so I'm wondering if there is a way to use FilteredTree with columns. ...

how to add xxx.db file into my project in android

i have xxx.db (SQLite file) where i want to add him to my android app in my android app under src i open new directory where i add "test.db" then in my app what should i write in order to get the db ? String myPath = "com.countryCityGame/databases/test.db"; SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.OPEN_READONLY); i am...

Designate an arbitrary folder as Android assets?

It seems that the Android resource compiler does not take into account linked folders (in Eclipse sense) in the assets folder. Question - is there a way to forcibly designate a folder of my choice as Android project assets? Short of copying or hardlinking into project assets, I mean. ...

During debugging, how to evaluate a piece of code in the debug target VM?

Hi all. During debugging, e.g. in Eclipse, one can evaluate Watch Expressions or Conditional Breakpoints. Typically, these are evaluated on the client side. For instance, when debugging from within Eclipse, it is Eclipse itself, not the debug target VM that evaluates these expressions. This can be quite costly, especially in the case of...

Does NetBeans have anything like Eclipse's Shift-F2 to bring up PHP Manual page for keyword?

In Eclipse when you put your cursor on a keyword and press Shift-F2 it brings up the PHP manual page for that keyword. Is there anything like that in NetBeans? ...

is it still advisible to use eclipse/intellij for grails development?

one thing I hate about java development are their IDE's, and configuration/setup involved to initially get going. does grails have these issues? from the looks of it, it seems you need a command line open and then any text editor will do. (apart from a mysql and tomcat install). are these assumptions correct or its better to get eclips...

How to go back in Eclipse?

Is there a way to go back in Eclipse? Basically, when I'm jumping around a big project following the execution flow (ctrl + click and etc.), is there a way to retrace a step? If my code calls a method and I go to the method definition, is there a key combination that will take me back to the calling code? ...

How to get backspace \b to work in Eclipse's console?

I'm creating a little Java application which should have a progress indicator with percentages. In every loop it uses backspace \b to remove the displayed progress before displaying the next percentage. Here's a simplified example: public static void main(String[] args) throws Exception { System.out.print("Progress: "); for (in...

How to manually configure Qt in Eclipse for existing C++ project.

I know this sounds like a stupid question but for some reason the way I'm doing it keeps giving me crashes with "symbol lookup error"/"undefined symbol". This is what crashes: #include <QVariantAnimation> #include <QDebug> class MyAnimacion : public QVariantAnimation { public: MyAnimacion() : QVariantAnimation() {} ~MyAnimacio...

stop junit class from autodeploying

I am testing my eclipse web project on Jboss which I have set up in an integrated environment in Eclipse. I have set the hot-deploy flag to yes, for development reasons. However since the junit branch is under the same source tree, my server keeps restarting when I change my unit tests. Is there any way to ignore a folder under src? ...

version control for one-man project using eclipse?

I'm currently working on several projects on my own (at least the developing part is done only by me :). Using Eclipse with different Java, R, SQL and other source files I'm wondering what version control system would be best for me. At the time the history of Eclipse IDE seems to be enough, but I'm not sure if this will be true in a mo...

Any way to hide test classes from the Hierarchy View in Eclipse?

I love Eclipse's hierarchy view which quickly shows all the subtypes and supertypes of my Java classes and interfaces. However, the results I am looking for are made confusing by the fact they also show all the types from my unit tests. While I find this helpful at time, I mostly find it annoying. Any way to filter this? ...