eclipse

Add a method breakpoint to all methods of a class in EclipseIDE

In Eclipse, is there a way you can set Method Breakpoints on all the methods of the class without going to individual methods? The motivation behind is that, any time a method gets hit, it would go to that method in debug mode. ...

Eclipse keyboard shortcut: goto function name

Suppose I know a function name, but I dont know which file it's declared in. What's the Eclipse keyboard shortcut to take me to the function I'm looking for. What I'm looking for is similar to Eclipse's: Ctrl + Shift + R except it will search for method names instead. Sidenote With Visual Assist X, I can do this by using the ...

Eclipse progress view stop button listener

Hi! I develop an eclipse plugin, and I created an progress view which indicates where the work runs. Everything works correctly, but I have a question. When I made this view an stop button appeared on it. But I haven't found any listener to control this. But the best should be that if there is an pause button within the view insted of t...

Deploying BlackBerry Applications Across Environments

Has anyone come up with a good solution for deploying BlackBerry applications across different environments? My example is storing URLs and Authentication information in code. In most cases, a developer is going to have a different set of URL's to test against when developing the application vs what the end user is going to hit. The id...

simple modification results in error

When I tried to do a simple modification of the "hello android" program that eclipse adt plugin generates I get error and can't get the program to run again even if I restore the file to its original contents. The modification was that I changed a string in strings.xml. the line was: <string name="app_name">Todo List</string> and the...

Android: Conversion to Dalvik format failed: Unable to execute dex: null

I'm trying to use the SmugFig SmugMug API on Android. It was designed for J2SE I would imagine, so I'm not sure it will even work on Android, but I figured it was worth trying as opposed to trying to create my own API. When I load the project though, I get the following error: Conversion to Dalvik format failed: Unable to execute de...

Eclipse Javadoc tooltip help doesn't show classes' supertypes and interfaces

I'm talking about the tooltip that pops up when you hover your mouse over a class in your source (which also helps with intellisense and auto completion), which describes what a class/method/etc does. I find it very annoying that it doesn't show what superclass the class (being described) extends or what interfaces it implements. Is th...

SVN Export in Eclipse removes labels on tabs

I have a very strange effect when using subclipse with eclipse. Whenever I use Team->Export to export a file from the editor the export works fine, but the label of the tab of the file is removed. Effect can be seen here: http://www.daspferd.de/img/tabs.png Strangely enough it happens with php-files, css-files, html-files but NOT with ...

Need advice on how to resolve InvocationTargetException

Hi all, I am getting InvocationTargetException while using any SVNKit operation thorugh Eclipse framework. Although SVNKit's methods are working fine with the main method invocaiton. Moreover, I am running SVNkit operation using Eclipse's Job API so I dont sense any reason with updating UI thread. Friends, please help, I have tried ever...

How can two eclipse plugin use the same preferences store?

I have two plugins, say com.site.plugin.core and com.site.plugin.ui. I'd like to separate core part from UI part, so at plugin com.site.plugin.ui I created Preferences page where I defined some preferences, which should be used by com.site.plugin.core. I check article at Eclipse site, but it is quite outdated, and linked bug also do not ...

is there a key shortcut in Eclipse to copy the whole method body into buffer?

is there a key shortcut in Eclipse to copy the whole method body into buffer? ...

Eclipse Java question - How to "Export" code the right way?

Dear Stackoverflow, I have a whole project in Java and I need to make a code listing in part of my documentation with all my classes and code. I was wondering, what is the best way to export the code? Is it simply just copy and paste, or is there a way to export the code properly to keep all the formatting etc? Basically I need to put ...

opengl + glew in Eclipse (for windows)

I'm trying to get glew to work under eclipse (mingw) in windows. Seems as if it is extremely unusual not to use Visual Studio in this context. The install instructions for glew is simply "use the project file in build/vc6/"... The glew readme also writes: "If you wish to build GLEW from scratch (update the extension data from the net or...

eclipse for sun one server for debugging and running application

Is there a way to add sun one application server 7 to eclipse IDE. Its for maintaining an enterprise application project. The jdk is also 1.4 used for the application. ...

Eclipse ant build gives "Another singleton version selected", how can I stop that?

We run org.eclipse.ant.core.antRunner to build our plugins and RCP projects. In the build logs we get a ton of messages like: [eclipse.buildScript] Bundle org.eclipse.X: [eclipse.buildScript] Another singleton version selected: org.eclipse.equinox.X_1.0.4.v20081112-1019 The reason is clear; There are two different versions of a pa...

What is the difference between plug-in, feature and product in eclipse rcp

What are the difference, what get's used for which purpose? ...

Allow Incorrect Package Name in Eclipse

I have some classes in my current project which have the wrong package declaration (they are in the wrong folder for their declared package.) Unfortunately, fixing the problem by moving the class is not an option. Is there a way I can get eclipse to ignore the error? ...

Stopping and Play button for Audio (Android)

I have this problem, I have some audio I wish to play... And I have two buttons for it, 'Play' and 'Stop'... Problem is, after I press the stop button, and then press the Play button, nothing happens. -The stop button stops the song, but I want the Play button to play the song again (from the start) Here is my code: final MediaPlayer ...

Why does Flash Builder 4 use Flash Player instead of a browser to run apps?

I've got an old flex builder 3 project that I imported into Flash Builder 4, and I want this project to run its web applications in my web browser. However, the apps persistently run in the Flash Player instead. This is causing no end of problems because of the flash player bug documented at https://bugs.adobe.com/jira/browse/FP-209. Ho...

What is unchecked cast and how do I check it?

Hi, I think I get what unchecked cast means (casting from one to another of a different type), but what does it mean to "Check" the cast? How can I check the cast so that I can avoid this warning in Eclipse? Thanks, ...