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
3
votes
3 answers

UML tools for Eclipse Helios

I'm using Eclipse Helios as IDE, specifically I am using the "modeling" version that may have all modeling plugins pre-installed. Unfortunately, I'm not able to find a compatible version of UML2 tools. I've downloaded both mdt-uml2-Update-3.2.0RC3…
pAkY88
  • 6,262
  • 11
  • 46
  • 58
3
votes
1 answer

How to resolve conflict between JPMS and OSGi Bundle for Eclipse plugin project an Tycho

I am working on an Eclipse based project that recently switched from Java 1.8 to Java 11. Due to that we have now a conflict between classes from the JRE and classes that are introduced from Eclipse plugin dependencies. The package javax.xml.parsers…
3
votes
1 answer

Running Equinox stand-alone with --launcher.ini option

I'm trying to run Equinox and antRunner in "headless" mode with a custom eclipse.ini file. The "--launcher.ini" option should work according to: http://wiki.eclipse.org/Equinox_Launcher . However, when I run the following command line: java.exe …
thesam
  • 130
  • 7
3
votes
1 answer

Where does eclipse look for binary libraries in plugins?

I have an eclipse plugin (developed by a third party, no source code available) that uses a binary library to do some of its work. The library is open source. The distributed plugin includes only the binary for Windows, but I can easily compile it…
divegeek
  • 4,795
  • 2
  • 23
  • 28
3
votes
0 answers

Eclipse update and plugin installation is extremely slow

Possible Duplicate: eclipse very slow to start a plugin install I installed Eclipse for JavaEE (Helios) and the update process seems to take forever (it's contacting software sites for an hour already). Same thing with plugin installation (it is…
Kirill Dubovikov
  • 1,457
  • 2
  • 21
  • 41
3
votes
3 answers

How to Create an OpenFire Plugin

I'm very new to java and feel very confused. I'm trying to create a VERY basic plugin for the OpenFire server, but have no idea how to get started. I read the Developer Guide, but it doesn't explain how to set everything up in eclipse. Do you have…
Rob
  • 7,028
  • 15
  • 63
  • 95
3
votes
1 answer

Transform java.net.URI to org.eclipse.emf.common.util.URI

There are at least two types of URIs in Java: java.net.URI org.eclipse.emf.common.util.URI I have java.net.URI and need to use the EMF URI. How can I convert the former to the latter? If I try new URI uri = profileUrl.toURI() I will get a message…
Martin
  • 65
  • 2
  • 4
3
votes
2 answers

Access relative path from eclipse-plugin

Does anyone know how to get a file with uri from a self-made Eclipse Plug-in? Absolute paths would be no problem: URI.createFileURI("C:/Users/hp/workspace(dke)/SMartGen/StarSchema.profile.uml"); But how do I access local resources…
Martin
  • 65
  • 2
  • 4
3
votes
1 answer

Is it possible to add the entire eclipse Plugin Project to a Eclipse RCP Application

I have developed an eclipse Plugin Project with SampleFormPage with multiple forms with using formtoolkit and formPage. Now I want to change the scenario of the project and want to change the eclipse Plugin project to Eclipse RCP standalone…
Abhishek Choudhary
  • 8,255
  • 19
  • 69
  • 128
3
votes
3 answers

Failed to create HTML page using GWT plugin for Eclipse

When i create a new GWT (version 2.3) project using the Eclipse (version 3.5) plugin, without enabling sample code, i failed to create a new HTML page by using the GWT->new HTML page. It opens the dialog window, i enter the name of the file and the…
Ponty
  • 645
  • 1
  • 7
  • 25
3
votes
1 answer

how to install scala plugin for latest eclipse ide (version 2020-03)

Eclipse version= 2020-03 (4.15.0) I tried to install scala plugin through eclipse market place but it is giving errors:= Unable to connect to repository http://download.scala-ide.org/sdk/lithium/e47/scala212/dev/site/content.xml Connect to…
AbhiK
  • 247
  • 3
  • 19
3
votes
1 answer

Find unused variables in Flash Builder 4 (like Eclipse for Java does)

Eclipse has a built in functionality to find unused variables (and methods too I guess). Flash Builder 4 is built on top of Eclipse but it doesn't have that functionality. Do you know any plugin to achieve that functionality? Also, if you know any…
3
votes
1 answer

Installing Subversion on Eclipse 2019-09

I've installed the latest version of Eclipse (2019-12) and I'm unable to find the SVN connectors in the marketplace. Searching for SVN does not return Subversion or Subclipse and if I try to install them from their website I get a "not compatible…
Holden
  • 177
  • 1
  • 2
  • 10
3
votes
2 answers

Eclipse: java.lang.RuntimeException: Application “org.eclipse.ui.ide.workbench” could not be found in the registry

Iam using helios eclipse (eclipse-SDK-3.6.1-win32). I update this Helps > Check of updates I have updated completely by checking all. (Most of them was plugin related to android) After completion of updates, it asked me to restart eclipse. After…
Jithin
  • 1,745
  • 4
  • 18
  • 25
3
votes
2 answers

How to write a hyperlink to an eclipse console from a plugin

I would like to write the location of a file to the eclipse console as a hyperlink. When you click on it it should open the file in eclipse. I'm currently doing something like this (but the link doesn't show up) console = new…
Benjamin
  • 539
  • 2
  • 6
  • 16
1 2 3
99
100