Questions tagged [eclipse-plugin]

Eclipse is an OSGi extensible platform for tool integration. The extensions to Eclipse are Java plug-ins. Use this tag to ask about developing Eclipse plug-ins. Note that asking for plug-in recommendations is off-topic.

Eclipse isn't a single monolithic program, but rather a small kernel containing a plug-in loader surrounded by a multitude of Java plug-ins. This small kernel is an implementation of the OSGi R4 specification and provides an environment in which plug-ins execute.

Each plug-in contributes to the whole in a structured manner, may rely on services provided by another plug-in, and each may in turn provide services on which yet other plug-ins may rely.

Plug-ins allow the extension of Eclipse functionality in various ways:

  • Providing additional UI elements,
  • allowing working with new technologies,
  • enhancing an existing plugin functionality, and much more.

The Eclipse source code is readily available and can be integrated with Eclipse to make it easy to debug plug-ins.

Documentation

11636 questions
4
votes
4 answers

Tools that can help in code checking in Android

Is there any good tools or Eclipse Plugins that would scan my Android Project and identify possible 'Memory leaks', susceptible code for 'Force closes' and other general code standards of Java and/or Android.
Brighton Vino
  • 295
  • 3
  • 10
4
votes
3 answers

Hadoop CDH4 and Eclipse Juno

Has anyone been successful in building an eclipse plugin for Juno against the CDH4 installation? I've seen CDH3 all over the net. Looking for CDH4. Thanks much.
arcee123
  • 101
  • 9
  • 41
  • 118
4
votes
6 answers

Android: resource String automatic generation

I'm new to Android. When I add a button/views in Graphical layout it adds the label text this way- android:text="Button" . Why doesnt it add "android:text="@string/my_label" and add a string resource in string.xml file. Can't it be done…
Tanvir
  • 1,642
  • 8
  • 32
  • 53
4
votes
2 answers

Eclipse Plugin for creating large java class diagrams from existing code

I am looking for an Eclipse Plugin to create large class diagrams from existing Java code (free/open source). I found some plugins that create diagrams from java code and vice-versa, but the project has a large number of packages (about 80) and…
Andrei F
  • 4,205
  • 9
  • 35
  • 66
4
votes
4 answers

Headless build of eclipse features - PDE Tools or Buckminster?

I am trying to set up a headless build for a big eclipse feature, containing other features and plugins. As some needed plugins are generated using GMF and EMF, the build workflow must be something like this: SVN Check-out Invoke Generation Run…
Max
4
votes
5 answers

some doubts related to osgi

I am new to OSGI framework. I was going through the sites and read about OSGI framework. Frankly speaking I did notunderstand anything. Following are my doubts OSGi is supposed to provide modularity. Cant we achieve the modularity through normal…
user414967
  • 5,225
  • 10
  • 40
  • 61
4
votes
2 answers

cannot install SVN connectors in eclipse

I am running Eclipe Juno and trying to get SVN installed, ive included all the svn jars avaliable from the http://www.eclipse.org/subversive/latest-releases.php. when at the select connectors to install screen when i try and install i get the error.…
Sean F
  • 2,352
  • 3
  • 28
  • 40
4
votes
2 answers

Springsource Tool Suite UML plugin

Is there an open-source "UML Modeling" plugin for Spring source Tool Suite? I tried installing UML2 plugin provided for Eclipse but it doesn't seem to work. After some googling, I found Object Aid which isn't licensed open source software! Is there…
Surekha
  • 582
  • 1
  • 7
  • 12
4
votes
1 answer

How do I open my perspective on first launch after the user installs my Eclipse Feature

I'm building Eclipse plugins and delivering them via a p2 repository as an Eclipse Feature. One of my plugins contributes its own perspective via the org.eclipse.ui.perspectives extension point, and it works fine. Everything is running…
twindham
  • 930
  • 9
  • 31
4
votes
1 answer

PerlUnit in Eclipse

If we click on Java perspective in Eclipse and right click on a Java project, we see “new” a JUnit file.On executing the test cases in JUnit we see red/green bar displaying failure/success of test cases. I am trying to find a plugin that would add…
amit modi
  • 1,098
  • 1
  • 11
  • 26
4
votes
1 answer

Why eclipse does not open when I change the max heap size?

I have installed MAT in eclipse and also the plugin to open IBM format heap dumps. When I try to open a heapdump with File->Open from eclipse I get a message box error saying: An internal error occurred during: "Parsing heap dump from…
Jim
  • 18,826
  • 34
  • 135
  • 254
4
votes
3 answers

How to programmatically find a .java file in an Eclipse plugin from full classname?

Inside an Eclipse plugin, I'd like to open a file in editor. I know the full package and class name How can I determine the path of the .java file from this?
Cedric Reichenbach
  • 8,970
  • 6
  • 54
  • 89
4
votes
1 answer

Adding buttons to a table (java swt)

I'm trying to replicate a UI similar to this: http://librixxxi.blogspot.com/2011/06/punch-clock-021-and-clickable-edit.html and I have been following the authors instructions (without success) on how to create buttons that are in each column of my…
KWJ2104
  • 1,959
  • 6
  • 38
  • 53
4
votes
5 answers

Eclipse issue proxy connection: unable to save secure preferences

Hi, as shown in screeshot, eclipse fails while saving the secure preferences file. Already tried to give 777 access to those folders (the fact that folder shown under Security -> secure storage -> Contents, as Storage Location didn't even exist, so…
Michele
  • 681
  • 3
  • 16
  • 27
4
votes
1 answer

Tycho fails to resolve packages from my own wrapper of plain Maven dependencies

I am trying to create an Eclipse plug-in which has dependencies to plain Maven artifacts. I created the following project structure: Parent POM |- Dependencies (Third Party) \- My Code |- Bundle \- Bundle Tests I have followed the Tycho…
Ignacio Mulas
  • 94
  • 1
  • 8