eclipse

Debugging Zend Framework in Eclipse, mod_rewrite problems

I have a simple ZF that already works well. I've set it up to work in a subfolder, so I access it with localhost/zftutorial URL. Now the time came for debugging, but when I execute debugger in Eclipse, it appends debug URL params (like XDEBUG_SESSION_START=ECLIPSE_DBGP) which break everything and I start getting this message: > *Zend_C...

How can I debug this NullPointer Exception?

I'm trying to write an application for Android and when I launch my new activity, I've set break points and found that it runs through my onCreate without any errors, but after that function returns, the debugger says there is a NullPointer Exception. The problem is, its not in my code, it says its in ActivityThread.performLaunchActivity...

Eclipse CDT 5.x and cmake 2.6.x

Hi, According to what I see, cmake 2.6.x supports CDT 4.x. We already have CDT 6.x. Is CDT 5.x and cmake 2.6.x are compatible at least? Thanks Dima ...

how to open the find type dialog programmatically in eclipse

Hi, I want to open the "Ctrl-Shift-T" dialog (find a type) programmatically in eclipse plug-in. I tried the FilteredItemsSelectionDialog and ResourceListSelectionDialog, but how do I get all the types in the workspace? Thank you, Ido. ...

Eclipse C++ compilation warning problem

Hi, Here a code to demonstrate an annoying problem: class A { public: A(): m_b(1), m_a(2) {} private: int m_a; int m_b; }; This is an output on Console view: make all Building file: ../test.cpp Invoking: GCC C++ Compiler g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"test.d" -MT"test.d" -o"test.o" "...

Dynamically Loading EMF Models

I have a backend system which i access via a REST based API and i am returned a resource. This is an EMF resource (an XMI representation). The problem is that i cannot, at design time, assume the metamodel for this resource - as the metamodel in the backend system can change without notice. I am wondering if i can, first, read the metam...

Eclipse dev tools for Nice

I'd like to evaluate Nice. For reasons of familiarity of the development environment, I'd like to stick with Eclipse, so I would like to find something like JDT/CDT for Nice in Eclipse. Anyone any idea whether and if so, where, that can be found ? ...

Eclipse plugin for Objective-C?

I'm going to learn Objective-C, and I was wondering if there was an eclipse plugin out there to do things like syntax highlighting and easy compiling/project management. I did some preliminary searching, but I couldn't find anything. What's my best I can do for an IDE? I don't have a mac. ...

Haskell Hello world, eclipse IDE

I'm having trouble getting "hello world" going with eclipseFP and Haskell. I have the following code, module Main where main = putStr "Hello world!" and when I compile it with ghc.exe .\H1.hs -o hw.exe it works fine, but under eclipsePF, when I run it I only see the following in the console window: GHCi, version 6.10.4: http://...

AutoIndent in Eclipse possible?

I have been wracking my brain trying to figure this out. For the first time I used jEdit the other day and I was pleasantly surprised that it auto indented my code (meaning that I'd put in the following code: int method () { _ //<-- and it put me here automatically I've tried to get the same thing working with eclipse but with no ...

Can Eclipse CDT do auto-complete when using typedefs?

For all my code Eclipse's autocomplete function is working fine, except when I use a typedef. Example code (someclass.hh): typedef std::vector<int> IntVector; class SomeClass { void sort_int_vector(IntVector &iv) { iv.//eclipse auto complete does not work. (ctrl-space) } } How can I configure Eclipse to do auto-complete in thi...

Replace broken encoding

Is there a way in Zend Studio (6/7)/Eclipse to replace all broken characters, when you've accidentally saved a file with the wrong encoding? ...

Parent And Children Relationship

Hello Guys, I am haveing this problem with my application and need help. I have data from the server in this form Food Apple Fruit Seed etc.. Table Chair pen School et.. ... Food Mango Peer Melon etc.. Reading from the left, i want to make for eg; in the first row, Food parent of Apple Apple parent of Fruit Fruit...

How do I enter unicode characters in eclipse?

I am running eclipse in Linux and while shift+control+U+1+1+1+1 works in other apps (where 1111 are the 4 digits of the unicode character in question) like firefox, it fails in eclipse. I just want to add some special chars to my Java string. ...

[NSIS] Custom radio-buttom INI page via Eclipse

I'm using Eclipse's create InstallOptions menu to create a custom INI page with radio-buttons for repackaging the Blackberry Desktop installer. There are 2 sections for each type: "Internet" and "Enterprise". I need a user to select 1 of the 2 options and depending on their selection, the page will carry over the selection chosen in th...

Google data (gdata) in eclipse with app engine, java

Ive had a similar question as this one before, and when that solved this came. So here we go again. The content of doGet pretty much works but when I try it as a part of a servlet that eclipse created for me I get errors. Its looks a bit like I don't have the appropriate files referenced in the library, but I think I do. The java code ...

How to update Eclipse from 3.4 (Ganymede) to 3.5 (Galileo)?

I've got my Eclipse 3.4 envirnoment set up nice and cozy the way I like it. Took me some time too, to find all the plugins (Mylin, PDT, Subclipse), set all the settings, etc. Now I see that some of the plugins (like PDT) only support 3.5 in their latest versions. Is it possible to update from 3.4 to 3.5? I'd hate to do it all again. I ...

Good solutions to distribute a pre-configured Eclipse?

I am working with a medium team of developers. So far, everyone has its own version of Eclipse, configured with a slightly different set of plugins and with different configuration options. It is normally a pain to set up a new computer as we have to hunt for a bunch of different plugins and configure everything by hand. Is there a wa...

eclipse: Do not show references from binary types in call hierarchy

Is there any way to remove binary references from "call hierarchy" (Ctrl-Alt-H) ? Our project setup is such that for many members we have duplicated references (one reference from source file and one from the jar file with class compiled from that source file). The navigation is inconvenient and I wondering if any ways to fix that is ava...

Why do I get a warning: "build.properties does not exist"

This appears to be something to do with the Plugin Development Environment, but I'm not writing an Eclipse Plugin. How can I stop getting this warning? Thanks a lot! ...