eclipse-plugin

Is there any good plug-ins for developing javascript in Eclipse

Duplicate: What is the best Javascript plugin for Eclipse? jseclipse? ...

Looking for a single package for JSF SUN-RI with JSTL

For those of you using JSF + JSTL, is there any provider that provides both these jars in a single package (zip etc.)? (I'm looking for one package due to limitations of a particular framework that I'm using to write an Eclipse plugin) Any pointers are welcome. ...

What non-free tools are popular amongst Java developers

The vast majority of developers I interact with are using Eclipse (I prefer NetBeans) and will leverage many of the free plugins that are available. However, many of them are using few if any tools that require monetary payment. Have developers ever considered that this may be unwise and that they are compromising their own productivity...

How can I obtain the version number of a custom Eclipse feature at runtime?

I would like to display the version number of a custom Eclipse feature I am developing in the title bar of its perspective. Is there a way to obtain the version number from the runtime plugin and/or workbench? ...

Blackberry - app not showing up on the simulator

Hi I am using the Blackberry SDK 4.6 eclipse plugin to create applications. My apps were running fine till some time back when testing on the simulator. Then I ran the clear.bat to remove all applications I had added. Now whenever I try to compile and run my app from eclipse, it does not show up in the simulator. I tried creating the w...

How do I listen for a user exit in my Eclipse plugin?

Hi all, I am writing an Eclipse plugin for a college project and need to be able to run code when the user exits and I can't find the correct Listener to enable me do this. An example of similar code is shown below where I listen for successfully completed save events and call a method when this occurs. public class ExecutionListener i...

Why the is flexbuilder plugin for eclipse so slow to open and compile ?

I've got a decent computer. ( something with dual-core in the name and a lot of ram ). Sometime FlexBuilder prompt the "builder project" loading bar only when i open a simple mxml file. It's look like he does some difficult jobs... i don't ask for anything fancy. I just want the file open, in text mode. Every time i hit ctrl+s, i fear ...

Eclipse: mocking up the platform for testing

Hi! I am developing an Eclipse plugin and have tests for it. Some are regular JUnit tests, some are PDE tests (i.e. require starting an eclipse instance to be able to access eclipse internals). I wonder if it would be a good idea to try to turn some of the PDE test into regular tests, by creating mock objects for the platform. It would...

m2eclipse Indexing 3rd-party jars from Maven repository

Hi, I am using Nexus repository. and using Eclipse 3.4 with m2eclipse plugin installed. sometimes I need to upload jars that are not located in the central repositories (Like Sun jars). so I upload them under the "3rd-Party" section in Nexus. The problem is that when trying to add those jars as dependencies, eclipse does not index them ...

How does one change the size (width + height) of the XML layout preview panels in the ADT plugin for Eclipse?

I'd also like a way to change the default, if possible. ...

Eclipse Plugin: Opening A New Window From The WorkBench

Hello Guys, I am new here so forgive me for any mistake. I just need your help urgently. I am new in developing Eclipse plugin and i have manage to do a lot of work. This is where i have got stuck. I have a view with a button. When a user cklicks on the button i want a new window to be opened(The window is a form with Text areas, butto...

ReviewClipse with Zend Studio for Eclipse

I've installed the latest ReviewClipse and latest Subeclipse plugin in the latest Zend Studio (6.1.2). I've got a connection to Subversion through Subeclipse but I do not get the Review context menu that the help file suggests: "You may start the review wizard from the context menu of your Subversion shared project under Review - Review ...

Django in Eclipse

The book I've been reading about Django mandates heavy usage of a command line in terms of installing Python and importing Django. It details which command line commands are necessary, both from the command line itself and from a python shell, in order to create a new project, start a web server, perform synchronization of models to a da...

Server Connection

Hello Everybody, I am making a server connection from my plugin using XML-RPC but it is not working from the plugin.When i use the class in a normal Java Application and run it as a normal Java Application, it works fine and makes the connection to the server. But when i compile my plugin and get a new instance and click on a button to...

Java plugin development with debug interface problem

Hello i'm trying to develop an eclipse plugin (in eclipse) that uses the Java debugging interface and i'm getting the following error: Access restriction: The type VirtualMachine is not accessible due to restriction on required library /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/classes.jar Using the debug in...

More fine grained sorting of methods using Eclipse Ganymede: Is there a good plugin available?

These are the options we have out of the box: I would like a more fine grained sorting when it comes to methods. I would like to: Have all methods with a name which does not start with get, is or set first. Then have the accessor methods (with names starting with get, is or set). Individually the methods in [1] and [2] above could...

eclipsen hibernate tool reverse engine fail

when i run, i get java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 Index: 0, Size: 0 just like error faced by many other users at http://www.mail-archive.com/[email protected]/msg50006.html anyone what caused the error? ...

Modifying Existing Eclipse Plugin and Correctly Installing it

Hi, I downloaded the source code for the EMF based UML2 Plugin and changed a class in the org.eclipse.uml2.uml.edit project to remove special characters when returning string representations. Now when I export the projects and place the jar files either in the dropins directory or replace my current uml2 plugin jar files in plugins dire...

Can Eclipse generate method-chaining setters

I'd like to generate method-chaining setters (setters that return the object being set), like so: public MyObject setField (Object value) { this.field = value; return this; } This makes it easier to do one-liner instantiations, which I find easier to read: myMethod (new MyObject ().setField (someValue).setOtherField (someOthe...

how do I set eclipse.ini -vm option ?

I installed maven plugin for eclipse, then I get an error like below: please make sure the -vm option in eclipse.ini is pointing to a JDK how to use -vm option to point to my jdk in eclipse.ini? ...