eclipse-plugin

Namespace refactoring tool for Eclipse?

I'm doing some housekeeping on some files, and I need to move some classes to a new namespace. Currently I have to manually edit the files, but I was wondering if there's a more efficient way of doing this? I heard about ReSharper for Visual Studio does what I need, but is there a similar tool for Eclipse? ...

Is there any WYSIWYG plugin for eclipse ?

Hello guys. I have been searching for a while for a WYSIWG HTML plugin for eclipse but couldn't get to any useful result. Would you please recommend a good plugin to use ? Thanx ...

eclipse servers

Hello, I have the Eclipse for Java EE Developers, and when I'm trying to create a new server runtime, I don't see in that list Apache Tomcat, or Glassfish v3 Prelude servers. Where are they? I tried to 'Download additional servers' but I see only 5 versions of Geronimo and a Jetty server, no apache and other Glassfish versions. What up...

How to deploy GWT Project containing GWT modules without entry points with Eclipse GAE plugin?

I have a GWT Project containing some GWT modules that I would like to have NO entry point, functioning as libraries for other modules WITH entry points. The GWT 'entry point' modules compile fine with the "GWT Compile Project" option in Eclipse if I choose not to compile the GWT 'library' modules with them. They also run fine. When I ...

adding actions to Eclipse toolbar

Hi all, I have 2 plugins that add 2 actionSet in the eclipse toolbar. I'd like to put them in the same group. What should I specify in the "toolbarPath" attribute? Best Regards ...

Flash FDT Eclipse Plugin, change auto complete accept hotkey

I am using the Flash FDT plugin for Eclipse and want to change the shortcut for accepting auto complete options. Right now I have to hit enter, and then it will fill whatever text was selected in the auto complete drop down. I would like to change this to TAB so it works like Visual Studio. Does anyone have any idea how to do this? I c...

Eclipse RCP p2 update not working

I have a personal Eclipse RCP product (com.example.product) based on one personal feature (com.example.feature) which is composed of one personal plugin (com.example.plugin) and a bunch of others from Eclipse Helios (3.6). I want the app to check for updates and update itself if necessary from a p2 site. I want it to be headless, ie the ...

programatically check new versions for eclipse plugin

I am new to Eclipse plugin development. I am developing a plugin which is only available inside an intranet and the user has to be prompted everytime a new version of the plugin is available. The plugin has an update site. Whats the best way to do this? Is it possible to install the new version programatically? I am targeting Eclipse 3...

Colorer Plugin in Eclipse Helios

I've been unable to get the wonderful Eclipse Colorer plugin to work with my current copy of Eclipse (Helios 64 bit). It installs ok but whenever I attempt to open a source file I get this error: Error in initialization of native part of the Colorer library. This can be caused by absent net_sf_colorer.dll (libnet_sf_colorer.so) library...

How to install the Android ADP Plugin in Eclipse?

I followed the instructions on ADT Plugin for Eclipse but I got this message when installing in Eclipse: Cannot complete the install because one or more required items could not be found. Software being installed: Android Development Tools 0.9.9.v201009221407-60953 (com.android.ide.eclipse.adt.feature.group 0.9.9.v201009221407-60953) ...

Problem in AST parser

Hi, I downloaded AST explorer code from a website. But i get the error as the following org.eclipse packages doesn't exists, I use eclipse IDE and the code is below, please help me package astexplorer; /** * Parses a source file and displays its nodes in a SWT Tree widget * You should run the main method inside the Eclipse IDE. *...

Eclipse Web Development Plugin to Sync with Remote Server

Hi, I'm using Eclipse Helios to develop a PHP/Smarty project. Is there a plugin that can help me easily publish code to the web server? Something like setting up the location of the web root once, then I can just right-click on a file to send. Currently, I'm using FileZilla to send my code to the web server. Any help or advice is appre...

Error during p2 eclipse-rcp app headless update

I'm trying to do a headless update at startup for my product com.example.product, which contains com.,example.feature which contains com.example.plugin. Here's the error I'm getting in my logs, and the code generating it follows that. It seems to be picking up the update site and the IUs ok, but then can't find the artifact. (P2Util.jav...

Getting the src directory in an Eclipse IProject?

I am trying to programmatically access the src/ directory in an Eclipse project (type IProject). Basically, my problem is as follows: INPUT: IProject OUTPUT: Return the src directory in this IProject Notes: The src directory may be called anything else (it need not be "src" every time -- it is decided when creating the java project)...

Scala project won't compile in Eclipse; "Could not find the main class."

Hi all, I have installed Eclipse 3.5.2 and today's Scala plugin from /update-current (that's Scala 2.8 final.) I can compile and run Scala projects consisting of a single singleton object that implements main(). But, if a project contains more classes, I receive the "Could not find the main class" error. I have tried searching for th...

Why aren't my Resources being refreshed in my Eclipse plugin?

I have a custom Eclipse plugin I am working on. It has a CustomerExplorer View(Part) that effectively replaces the 'Project Explorer' and it has a number of MultiPageEditorParts, each has a XML editor and a Form editor, both modifying the same configuration file. The XML editor is a TextEditor. The form and the XML are linked and each up...

Eclipse: Pass data between IMarker and IMarkerResolution

What is the established way to pass some data — more than int, boolean, String because those can be handled as marker attributes — from the class that creates an IMarker to an IMarkerResolution so that the quick fix can be "smart" about what it displays/does? ...

What are the best tips & tricks you use with Eclipse PDT

There are a couple of similar threads here, but most of the other tips don't work on PDT so let's make this one specific to Eclipse PDT for PHP. I'll start (w/ credit to those that work from other the other threads): CTRL-SPACE = code completion CMD-/ = auto comment CMD-SHIFT-L = key assist If autocomplete isn't working righ...

How can I enable or disable the eclipse new wizard depending on the project?

Hi everyone, My Eclipse product has several project types. And I extend "org.eclipse.ui.newWizards" for adding a specific file. But the file is necessary only one of the project types. So.. How can I enable or disable the eclipse new wizard depending on the project? Your replay will be appreciated. ...

can eclipse plugin project depend on java project

I have an eclipse plugin project which dependes on java project in my eclipse. usually what I did is export the project as jar and use it as-is in the plugin. but this requires manual work. can I have a reference from my plugin projct to a java project that will be both compile-time and run-time dependency ? I saw a similar question, but...