Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
460 views

Eclipe PDE: Jump to line X and highlight it

A qustion about Eclipse PDE development: I write a small plugin for Eclipse and have the following * an org.eclipse.ui.texteditor.ITextEditor * a line number How can I automatically jump to that line ...
3
votes
1answer
3k views

Eclipse Plugin Dev: How do I get the paths for the currently selected project?

I'm writing a plugin that will parse a bunch of files in a project. But for the moment I'm stuck searching through the Eclipse API for answers. The plugin works like this: Whenever I open a source ...
2
votes
1answer
107 views

How to wait until Eclipse IProject.create() and IProject.open() are completed before running Eclipse Java project

I have an Eclipse plugin that automatically loads existing Eclipse Java project to workspace, opens it and finally runs the Java application. If the Java project already exists in the workspace, the ...
2
votes
4answers
5k views

Get the absolute path of the currently edited file in Eclipse

I'd like to write a plugin that does something with the currently edited file in Eclipse. But I'm not sure how to properly get the file's full path. This is what I do now: IFile file = (IFile) ...
1
vote
2answers
52 views

Eclipse life cycle

I'm developing an Eclipse Plug-in. I have Activator class and my own classes. I need an Hashtable that must be initiated when the IDE is loaded and must be kept and accessible (used through several ...
0
votes
3answers
135 views

How to programmatically get information in Eclipse

I'm developing an Eclipse Plug-in. I need to programmatically get both filepath and filename of the selected/active file in the eclipse editor. Also need to programmatically add an existing file ...