eclipse-plugin

Adding a Groovy Class to a Google App Engine Project (groovy-plugin, google-plugin)

I've heard that GAE now supports Groovy, but it seems the plugins don't work so well together. I'm trying to make a GAE project in eclipse that I can add Groovy Classes too...but it won't work. Everytime I try to add a Groovy Class I get the error 'Project is not a Groovy Project'. And when I go to Configure - Convert to Groovy Project, ...

Weird JavaCore IType cache problem

Hi, I'm developing a plugin that takes all enums in workspace that implements certain interface (IDomain) parses the code (Using AST) does some modification over the enum and marks it as processed with an annotation (@IDomainInfo). For example, it takes someting like this: public enum SomeEnum implements IDomain { // ... } And gene...

Is there a DDD (Data Display Debugger) plugin for Eclipse?

Can I use DDD (Data Display Debugger) in Eclipse, either by configuring Eclipse or by using a plugin? If you want to know why, look at http://www.gnu.org/software/ddd/plots.png - a visual display of the contents of an array. Or, even better, IMO, http://www.gnu.org/software/ddd/all.png - see that top pane? A lifesaver for debugging li...

GWT 2.0 Eclipse plugin - how to automatically launch browser on run / debug?

I've downloaded the new GTW 2.0 and it's eclipse plugin In the new eclipse plugin, when running or debugging instead of opening the browser, it shows this: For your convenience, here are some URLs that you may wish to view in development mode. Simply copy/paste a URL below into any supported browser. At least they could have made ...

Eclipse IAutoEditStrategy only called on backspace; how to have it called on all edits?

I am currently working on a custom editor plugin for Eclipse. I've overwritten getAutoEditStrategies like this: public IAutoEditStrategy[] getAutoEditStrategies( ISourceViewer sourceViewer, String contentType) { return new IAutoEditStrategy[] { new KRLAutoEditStrategy() }; } and written a minimal Strategy like this: public class ...

How to show Stack Frame in DebugView?

I'm writing a Debugger in Eclipse. Normal, Stack Frames are still show in DebugView. But when I double-click in another View(BreakPoint View, Variables View...) to full size this view , then I double-click again. Now , Stack Frames aren't show Who can help me this problem? Or help me disable event double-click in tab View ? Thanks ...

Do too many plug-ins slow down Eclipse?

I have recently installed a new project into my Eclipse and also needed to install some plug-ins to manage it. I also installed other plug-ins which I do not need to manage the project but thought it will be nice to try out. After this, I noticed that my IDE isn’t as fast to respond as before. I’m not sure if it has something to do with...

how to use appcfg.py for google-app-engine projects created using google's eclipse plugin?

I have created a google-app-engine java project in Eclipse using Google's Eclipse plugin. My previous attempt to deploy failed. Now, when I retry, I get the following message: Unable to update app: Error posting to URL : http://appengine.google.com/api/appversion/create?app_id=mybdaywisherversion=1 409 conflict Another transaction for ...

Magic behind R.java file

Hi! Recently I have been having quite some problems with R.java file. Now I have decided to do a backup and delete the file to see what happens. Nothing happened, so I created an empty R.java file and hopped for the best. Now Eclipse seems to figure out that the file was tempered with and even issues a warning: R.java was modified man...

How to sync to a source tree on github?

I am playing with my eclipse cvs functionality (on my windows box), is there a way to check out a project hosted on github? Anyone shows me a pointer? Thanks, ...

given a folder of java files, is there a eclipse pluging to draw class diagrams

given a folder of java files, is there a eclipse pluging to draw class diagrams ...

A JQueryUI plugin for an eclipse environment

I am looking for way that I could at least has some intellisence in my Zend Studio Evironment (Eclipse Based) for my JQueryUI development to enhance my productivity. Are there any plugins out there whether free or commercial that I could used? ...

What are the Numbers shown in SVN repository Eclipse Plugin

A very basic question. What does the numbers shown in each node of the SVN Eclipse Plugin shows? I started using SVN recently only. Am seeing a number corresponding to each node. ...

Adding an entry in a submenu of a popup

I'm building a plugin, and adding an entry to the context menu (right-click on a folder in the project tree). So far it works, following this tutorial: http://www.eclipse.org/articles/article.php?file=Article-JFaceWizards/index.html The problem is that it's adding my entry in the root of the context menu. Since my entry refers to a "N...

What's a good, free source control system for eclipse android development?

Title says it all. My app code is starting to get unmanageable and I want to start source control, primarily because I need to branch my code. What are some good systems that you have used in the past and what would you recommend to me. Requirements: Must be free Must integrate with eclipse Must work well with android development plug...

how can i get the id of some hardware if i work with eclipse galileo 3.5

hi my name is marcel i'm very interesting in learn how to get the id of different component of the computer(MotherBoard, Hard Disk, Prossesor), i work with eclipse galileo 3.5 as a Java Text Editor (www.eclipse.org), can somebody tell me wich one is the plugin for eclipse to work with JACOB or with JCom, my email is [email protected] i...

How can I add an editor without IEditorInput into a RCP application ?

Hi all, I'd like to add an editor to an RCP application. I need to leverage the advanced features of editor, such as keywords highlighting. But it seems that editor have to be associated with an IEditorInput, but I just do not need to persistence the text, store it in memory is OK for me. Is there any way to do that ? Thanks -- Best R...

Eclipse text editor plugin & custom encoding

I'm currently writing an Eclipse text editor plugin for a custom language. The problem is, that the tool that is parsing these files does not understand unicode, but the editor should show unicode math symbols. There is already a Netbeans plugin that handles this by translating unicode characters to multiple ANSI characters. E.g. U+27F...

making maven work with eclipse

Hello I'm trying to install maven plugin with eclipse and I have a following problem, more in picture below : So my question is, is this supposed to take this long or I did something wrong? I'm using eclipse galileo , I went to the window-> install new software -> typed in http://m2eclipse.sonatype.org/update/ website and name ma...

TargetInvocationException when calling performFinish() on any subclass of NewItemWizard in Eclipse JDT UI plugins

I'm posting this on behalf of the 30 or so projects that seem to be suffering from this problem without any resolution. Basically the problem boils down to, a subclass of org.eclipse.jdt.internal.ui.wizards.NewElementWizard (which is the "Wizard" that controls the creation of new JDT elements like projects, packages, classes, etc -- thi...