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
1 answer

Eclipse / CFBuilder - Keeping track of changed files.

I have just started working with a new Coldfusion project, well the project is very much existing I'm the new part. Currently there is one set of source files and one set of live files. There is not version control or anything like that so all…
TheRealTy
  • 2,409
  • 3
  • 22
  • 32
3
votes
1 answer

Default position for a View for an Eclipse Plugin

I've created an eclipse plugin with a UI that I want to dock by default at the bottom in the Eclipse Java perspective (or any other perspective for that matter). How do I go about setting a default location for my plug-in UI?
stuff22
  • 1,662
  • 4
  • 24
  • 42
3
votes
3 answers

How do I set an embedded Groovy scripts classpath?

I am trying to extend an Eclipse code builder (for generating DTOs from Hibernate VOs) - and it uses Groovy for its template system. The code it uses to create the groovy Script is a little weird (not what I see in the Groovy docs) but it works,…
Jason Maskell
  • 1,716
  • 1
  • 17
  • 26
3
votes
1 answer

Tapestry5JSPEditorEclipse for the TML pages

I am using Tapestry5JSPEditorForEclipse to generate the TLD files by tapestry-tldgen Maven plugin. i have added entry in the project pom.xml. below is the entry for the reference. fr.exanpe
Mahendra Athneria
  • 1,203
  • 3
  • 16
  • 32
3
votes
3 answers

How to extend the source menu in Eclipse? (or: What is its locationURI?)

I am developing an eclipse plugin and trying to extend the source menu (mainMenubar/Source - visible when editing in the java-editor) in Eclipse 3.7. The documentation says to rely on the org.eclipse.ui.menus-extension point since the older…
mtsz
  • 2,725
  • 7
  • 28
  • 41
3
votes
2 answers

Eclipse RCP: How to order perspective buttons belonging to different plugins?

My application has 5 plugins. Each plugin has a perspective of it's own and hence each perspective extension definition is under individual plugin's plugin.xml. Now, I want to control the order in which these perspectives appear in my application.…
Real Red.
  • 4,991
  • 8
  • 32
  • 44
3
votes
1 answer

PropertyTester: How to determine Project Type on right click?

I am able to check for a Project Type I want for e.g by using in my for a…
Abbas
  • 3,144
  • 2
  • 25
  • 45
3
votes
2 answers

Cannot install Oracle Weblogic Server Tools in eclipse

I came across this error when installing Oracle Weblogic Server Tools from eclipse: Software being installed: Oracle WebLogic Server Tools 17.2.0.201806071916 (oracle.eclipse.tools.weblogic.feature.group 17.2.0.201806071916)Software currently…
kevinV
  • 33
  • 1
  • 7
3
votes
2 answers

How to programmatically refresh an Eclipse view, or RSE file subsystem?

How can I programmatically update an Eclipse view? (I suppose this might not need to be specific to RSE?). Background: I use Remote System Explorer (RSE) for Eclipse, do some stuff by executing remote commands via SSH, which creates new files on the…
Samuel Lampa
  • 4,336
  • 5
  • 42
  • 63
3
votes
1 answer

Component Diagram for an Eclipse plugin

I need to draw a component diagram for an Eclipse plugin, but I'm not sure how to do that. I found this diagram. I think I could draw something similar using the UML 2 notation for my plugin, replacing "Your tool" with the name of my plugin and…
Rafael Angarita
  • 777
  • 10
  • 27
3
votes
3 answers

Close editor using IEditorreference? ( eclipse RCP )

I have a UI in which when I select an item (in a tree) and then press a button "add", I get a new editor. With each item I can get an editor. (but all have the same ID) My purpose is to close only the editor of item1, for example, when I press…
maro
  • 53
  • 9
3
votes
1 answer

Swing GUI Control Plugin for Eclipse

I developed a small application in Java using Eclipse IDE. Now i want to make UI for that application. Since i don't have much command over JAVA so i am looking for some drag and drop feature. I heard that netbeans provide the drag and drop…
Jame
  • 21,150
  • 37
  • 80
  • 107
3
votes
0 answers

Invoking "Run" button of Eclipse via code

I have created a sample eclipse plugin development with a button. @PostConstruct public void createPartControl(Composite parent) { Button button = new Button(parent, SWT.PUSH); button.setText("button"); …
Kaviarasu
  • 58
  • 7
3
votes
4 answers

m2eclipse - No Connectors for SCM?

I have installed m2eclipse plugin to a remote machine with no connection to the internet, I manually did the plugin installation by copying the contents from features and plugins directories. Now When I am trying to Checkout Maven project from SCM…
Arpit
  • 6,212
  • 8
  • 38
  • 69
3
votes
1 answer

Including other files in c++ for File I/O

Is there a way to add files to the final .exe in a c++ program ? For example, suppose I want to play a sound file. Instead of including the sound file separately with the release .exe, the file should be part of the exe. Im aware about the use of…
viraj
  • 1,784
  • 4
  • 35
  • 52