eclipse-plugin

What's a good Lua IDE for linux?

I'm looking for a lua IDE on linux. The majority of suggestions I've seen so far are windows only. I would have liked to use one of the Eclipse plugins for lua, but both of them -- LuaEclipse and LunarEclipse -- haven't been updated in nearly two years, and don't seem to work with Eclipse 3.5. If you have had any luck in getting lua...

How to make an eclipse plugin for text comparison of two files

I plan to make a text comparison plugin for eclipse which basically provides a visual aid for changes that are required in the file and allows the user to accept or reject them. It is very much in lines of subclipse for svn or any other code comparison tools. I already found a good source to perform the text comparison but I'm looking fo...

Problem installing Maven plugin (m2eclipse) in Eclipse (Galileo)

I have Eclipse Galileo (for Java EE Developers) installed, and I'm now trying to get the m2eclipse Maven plugin installed as well. I follow the basic steps described at http://m2eclipse.sonatype.org/installing-m2eclipse.html, and it seems to be installing just fine. However, after restarting Eclipse after the install it doesn't seem to ...

How to change Eclipse enviornment

I am using eclipse pdt and all my files in the folder have php support. I want to use javascript support on JS files. How could I do that in Eclipse pdt helio? Thanks ...

Howto create an Eclipse Library?

Hi: How do I convert my Eclipse plugin so it is seen in Eclipse as a Libary, like JUnit, for example? Thanks in advance! ...

CommonNavigator in own RCP - App doesn't show anything

Hello, i used the sample mail rcp application to test out the common navigator framework. I added a view and attached it to my contentprovider. Unfortunately nothing is shown in my view, no function from my contentprovider or labelprovider even get's called. Here is my plugin.xml <extension id="application" point...

How can I put my own text hover into default Eclipse editor?

I need to put some extra information into to the standard "javadoc" hover, that shows up when you go with mouse over some token. Or I need to create a new hover showing that information while pressing some key (like alt) and then hovering (I can see that this is done e.g. with the shift key, which enables us to see the hover with sourcec...

Scroll the Layout Editor in Android ADT Eclipse Plug-in

Has anyone figured out how to scroll the contents of the Layout Editor when those contents overflow one "screen"? I'm talking about at design-time while using the ADT Layout Editor, not scrolling at run-time on a physical device (that works fine). ...

JAutodoc for Eclipse

Hi, I'm trying to generate javadoc with JAutodoc 1.7 for Eclipse 3.5. I've sucessfully created templates for files, classes, methods. However, on parameters and exceptions I get the default @param and @throws tags generated even if I change the template in preferences/JAutodoc/templates/parameters. This is incompatible with the coding...

Looking for Eclipse plugin: Lock source tabs in place

When working with java code in Eclipse I can typically juggle between 20-40 different files, but there usually are just two that I actively work with at the time (test and code). Going back to the code where I want to work after having debugged through 5-10 classes can be a pain. So what I would like to do is to be able to right click o...

Writing Eclipse plug-ins based on .Net controls?

Is it possible to host a .Net WinForms control within eclipse. We have a set of editor controls that we would like to make available as an Eclipse plug-in, but they are written in .Net. Is there any way to use them as the basis of a Eclipse plug-in? I’ve seen references to IBM’s “Interoperability Tool for Eclipse and .NET WinForms”, bu...

enable javascript support for eclipse

how do I enable javascript support in eclipse pdt. I have aptana installed. thx ...

In eclipse, how can I create a shortcut for an existing command that has no shortcut binding in the keys preference?

In eclipse, the behavior of Ctrl+F11 is determined by preference config, and you could have either "Run last launch in history" or "Run current resource/editor" option available. But I'd like to have both of them at the same time, with an additional shortcut (e.g. Alt+F11). But eclipse doesn't provide the two commands in "key preference...

Changing default plugin installation directory in Eclipse 3.5.2

With the new Eclipse 3.5.2 Update manager, I am not able to find, how do I specify installation directory for my plugins. I use it, so that I can manage multiple installation of eclipse, without installation plugins again. Can anybody provide me settings, so that I can specify location for plugin, while installing it ? ...

Getting started developing JSDT/wst.jsdt?

In my other question I spotted a bug in the Eclipse wst.jsdt. If I want to fix this myself, what are the knowledge dependencies for doing so? My guess would be: Know how to use CVS Know how to use Bugzilla Know how to develop core libraries in Eclipse Know how to develop plugins in Eclipse Know how to develop for the wst.jsdt project...

How can I parse XML doc with Schema 1.1, in Eclipse IDE?

How can I validate XML documents with Schema 1.1 in "Eclipse IDE" OR How can I validate an XML docs in "Eclipse IDE" by using external Apache xerces parser? (this will resolve my issue as xerces supports Schema 1.1) ...

Getting XText to work

I know you don't like helping others in their homework but I have to make an XText grammar, write a sample code that matches this grammar and compile it to a html file. The lecturer showed us the steps and everything worked for him... He said "It's so simple it will be a 10 minute work for you". And I believed that. However at home almo...

choose a tool to create/maintain custom eclipse distrib

I would like to settle on a tool to create/maintain my custom eclipse distrib (starting with next 3.6). By studying previous questions main contenders seem: Pulse Yoxos Google Workspace Mechanic: recently announced doing it yourself in eclipse Has anyone experiences in several of them and can comment on advantages etc?? My wishes are...

Environment variable expansion in persistence.xml (JPA)

I am developing a Eclipse RCP plugin which uses JPA. I tried to specify the database path via a variable give to the JVM on runtime. The property is set correctly but the database is created in a folder named after the variable name (here: ${DBHOME}). <property name="javax.persistence.jdbc.url" value="jdbc:derby:${DBHOME};create=true"/>...

How to keep plug-in manifest version and pom version in sync in Maven with Tycho

I am using Maven with Tycho to build an eclipse plugin. Tycho generates the pom.xml file for Maven by inspecting the manifest file of the plugin. Now both the manifest file and the pom file have the version of the plugin and they need to be kept in sync manually. This is because I have done some customization in the generated pom file an...