eclipse-plugin

Eclipse add plugin development

I have installed Eclipse Helios. how can i add to it plug-in development functionallity (to be able to create OSGi bundles) ...

Ant publisher properties in JBoss Runtime on Eclipse

Hi, I am using JBoss 4.2 Runtime on Eclipse Helios. As you know it uses the build file (jboss323.xml) that comes with the plugin. However I want to change the way this build file behaves for a particular project (for example: override its WAR building process, say add a filter to exclude certain files). But I don't want to edit jboss323...

Installing Aptana and Eclipse PDT - what should be main and what as a plugin

I would like to use an IDE for PHP Development using Zend framework & jQuery. I decided to use Aptana Studio. There is no PHP support in [Studio 2][2], so I have to use Eclipse PDF. My question is: Should I install Eclipse PDT first and the use Aptana as plugin or install Aptana Studio and then install Eclipse PDT as a plugin? What are ...

Displaying different icon sizes on different BlackBerry devices

I'm trying to dynamically set a different icon based on device. I have set up an alternate entry point within the app's descriptor XML file. It passes an argument of "icon" into main() of my application. The entry point is triggered as expected (installing the app and on power cycle), but it has issues when calling updateIcon() on certa...

How to set initial state of an Eclipse action contribution

What I'm trying to achieve is to contribute an action to the IProject pop up menu. The action is defined like this in my plugin.xml: <extension point="org.eclipse.ui.popupMenus"> <objectContribution adaptable="true" objectClass="org.eclipse.core.resources.IProject" nameFilter="*" ...

What does the -clean parameter mean in the Eclipse IDE?

I have read that after installing some Eclipse plugins manually, one should use the -clean parameter to start Eclipse. Why what does it do? Do I have to do something else? This question applies to Eclipse Galileo and Helios, in particular. ...

Exception thrown on creation of Google App Engine Google Web Tools initial project

The following log file is created when I create a GAE GWT project: java.lang.RuntimeException: Unexpected exception at com.google.appengine.tools.enhancer.Enhancer.execute(Enhancer.java:59) at com.google.appengine.tools.enhancer.Enhance.<init>(Enhance.java:60) at com.google.appengine.tools.enhancer.Enhance.main(Enhance.java:...

ClassCastException from layout editor in Eclipse's ADT Plugin

This is probably related to this question. I want to know if anyone else gets the same error as me and if there is a way to get around this. I did the following: Followed the instructions from this page. From the top, go to File -> Create a new project -> Android Project -> Create project from existing sample. Checked Android 2.2. ...

Launch plugin as OSGi

I changed my Java SE (right button click on project Configure -> Convert to Plug-in Projects) to plug -in, but when i try to run it - it run as Eclipse application, how to start it as OSGi? Thanks! ...

Smarter Editor Tab Labels in Eclipse

Has anyone found an option/plugin that allows customisation of Editor tabs in Eclipse? I have started using Eclipse for Pylons development and found that it is easy to do lots of tab hunting when my model and controller files have the same name. I was thinking of just prepending the package name to the file i.e models/page.py | control...

Eclipse RSE and xdebug - will this work?

I have a remote server connected over SSH using the RSE plugin in Eclipse Galileo. Is there anyway to "map" it to a PHP Debug session in Eclipse? (Xdebug is installed and working) I have heard that another solution is SSHFS but this might be tricky as I'm on WinXP and would prefer a 'generic' Eclipse solution. ...

In Eclipse, is there a way to open a file by typing its path and name?

IDEs are wonderful for many things. But I dislike how they make me use a GUI for something I can do faster typing in a command line. For example, opening a known specific file. If I know the name of a file, from the command line I can just type the name of my editor and the filename. With tab-completion I can accomplish this very quic...

Eclipse Generated Build Files

Hello all, I am using the ZK Studio plugin to create a web based project based on the ZK framework. Now, in order to deploy this project, all I do is right click on the project and select "Export" then select "WAR file". However, I would like build files to be created so that someone else can just make a change and run the build file to...

Setting targeted version of plugin to avoid NoSuchMethodException

Im building a plugin in Eclipse 3.6, but I want it to be compatible with Eclipse 3.2. I just got NoSuchMethodException, because I used some new API. is there any way to force eclipse to check if im not using too new methods? When I created plugin i chose eclipse 3.2. ...

Eclipse Subversion Plugin Subclipse shows an error

I am using Eclipse Version: 3.3.2 I have imported a project which is on already on SVN repository. I just checked out in wwwroot and then imported into eclipse. Done some changes. Then i was thinking to install subclipse. opened eclipse plugin manager installed Subclipse 1.2.4. Then right clicked on project ->Team -> Share Project ->...

Eclipse - Google Guice

I have been trying to use Google Guice in eclipse plug-in development. I have imported Guice jar as another plug-in project. But somehow Guice is unable to inject dependency. Any ideas??? This is the error message com.google.inject.ConfigurationException: Guice configuration errors: 1) No implementation for java.util.List<java.lang.S...

"transient" builds or triggering a specific builder

How can I tell Eclipse that a build is invalid if Eclipse is restarted, so that it always performs this build step again? Alternatively, how can I tell eclipse to do a full rebuild with just a specific build step? Anyway, the current solution is to implement a "builder-worker semi-singleton" (one per project) that keeps its own build s...

Is there a project facet for adding spring libraries to a project in Eclipse?

Everywhere I look I can only see people adding external jars to their Spring MVC web projects when starting a new one. Why isn't there a simple project facet for adding these to a project? I mean, what's the point of creating all these neato eclipse plugins if I can't quickly start a dynamic web project for spring framework without going...

Is it possible to hide/remove arbitrary context menu items in Eclipse (3.6)

My question can be split into three: Is it possible to hide/remove arbitrary context menu items in Eclipse (3.6) by ... standard UI? some existing plug-in? custom plug-in? I failed to find ways to do this by methods 1 and 2. If the only option is creating custom plug-in, could anyone push me towards the right direction where to star...

How can I add my view to specific perspective?

Hi Everybody! I had implemented two plugins. One is for perspective and the other is for view. The class for the perspective MyPerspectiveFactory which id is my.MyPerspective. And my view plugin xml is the following. It means add my view short cut to the my perspective. <extension point="org.eclipse.ui.perspectiveExtensions"> <perspe...