0
votes
1answer
51 views
Eclipse JDT ASTVisitor - how to tell if a field is read or written in a method?
I am writing a Eclipse ASTVisitor. How to tell if a field is read or written in a method?
The idea provided was "You need to vist Assignment node. Field on the LHS is written, whi …
1
vote
1answer
19 views
Using class as a field name in JDT dom
Hello, I'm trying to add a call to the StaticClassName.class field access to an existing class using JDT's Dom methods.
I get an IllegalArgumentException when I try to create a s …
0
votes
2answers
85 views
Eclipse plugin: NoClassDefFoundError on org/eclipse/jdt/ui/JavaUI
I am creating a plugin which requires jdt.ui.JavaUI class. I included the jdt.ui plugin into the dependencies. This is my Manifest.MF:
Manifest-Version: 1.0
Bundle-ManifestVersion …
1
vote
3answers
29 views
Use JDT to get full method name
I am new to eclipse plugin development and I am trying to convert a IMethod to a string representation of the full method name. I.E.
my.full.package.ClassName.methodName(int param …
0
votes
1answer
31 views
How to detect eclipse compile errors (Java - JDT)
Hi everybody,
I need to detect compile errors in the java source code after a POST_CHANGE event (usually it is fired after saving changes in the java file). I'm using IElementChan …
4
votes
7answers
302 views
How can I add build path items to Eclipse 3.5 using relative paths?
Eclipse 3.5 added support for relative buildpath/classpath items, yet I cannot seem to find a graphical way to add relatively pathed items. The example in new and noteworthy (searc …
1
vote
1answer
74 views
Eclipse “Open Type” dialog restricted to a particular interface
I'm trying to create a JavaUI.createTypeDialog() which restricts the user to selecting only types belonging to a particular interface. How could I do this?
1
vote
1answer
78 views
Running an Eclipse Plugin
How do I run the plugin project under Resources [1] here: http://www.eclipse.org/articles/article.php?file=Article-JavaCodeManipulation%5FAST/index.html
If I am not wrong, the pro …
1
vote
1answer
56 views
Plugin: how to get all the types available in my eclipse Workspace?
Hi,
I'm writing an eclipse plugin, and I want to get all the types that are available in my workspace,
like when pressing Ctrl+Shift+T,
but in a list or array.
How can I do it?
0
votes
4answers
219 views
Can i get the project build path programicaly?
I want to a project build path (default is src...). Can I do it using some java API?
1
vote
2answers
106 views
Write Java Method Signature with Annotated paramaters with JDT
Hi,
I am writing an eclipse plug-in which generates code. I am leveraging eclipse jdt to gen out classes, fields, and methods. One of the requirements I have is to generate meth …
1
vote
3answers
129 views
Eclipse 3.3 Europa JDT TextHover
I want to show my own text hover in eclipse for some specific words? Please provide me some examples
0
votes
1answer
39 views
In the Eclipse JDT, how do I most efficiently find a typeroot in the workspace corresponding to a fully qualified name?
The JavaCore class includes a create method that allows me to get the ITypeRoot (representation of class file or compilation unit) given a handle identifier that embodies the locat …
3
votes
4answers
399 views
Java refactoring tools
Hi,
I make very heavy use of the Java code refactoring tools provided by Eclipse (extract interface, rename method, etc.). Does anyone knows of other similar tools (preferably Ecl …
1
vote
2answers
132 views
When writing Eclipse plugins, what is the correct way for checking if an IEditorPart is a Java editor?
I am writing Eclipse plugins for Java, and have the following problem:
Given an IEditorPart, I need to check if it is a java editor.
I could do (IEditor instanceof JavaEditor),
b …
