Tagged Questions
3
votes
2answers
82 views
Java: how to detect the current java runtime is a JRE or JDK?
I got a Java application, I want to provide user ability to compile Java source code (Using JavaCompiler interface)
If the user run the application on a JRE, my application should tell user that the ...
3
votes
1answer
117 views
Can I use eclipse JDT/EST for other programming languages?
Can I use the AST / JDT for other languages? for example to write my own parser for C# that uses somehow the AST technology?
2
votes
2answers
262 views
Creating a Compilation Unit with type bindings
I am working with the AST API in java, and I am trying to create a Compilation Unit with type bindings. I wrote the following code:
private static CompilationUnit parse(ICompilationUnit unit) {
...
2
votes
1answer
275 views
Why does resolveBinding() return null even though I setResolveBindings(true) on my ASTParser?
I am writing an Eclipse plug-in that uses JDT AST's ASTParser to parse a method. I am looking within that method for the creation of a particular type of object.
When I find a ClassInstanceCreation, ...
2
votes
0answers
80 views
Weird JavaCore IType cache problem
I'm developing a plugin that takes all enums in workspace that implements certain interface (IDomain) parses the code (Using AST) does some modification over the enum and marks it as processed with an ...
1
vote
1answer
51 views
Eclipse plugin - creating a new class
I'm trying to write an eclipse plugin to auotmatically generate a java class from a text file. How can I do this in JDT?
The name of the class will be derived from the name of the text file, and I ...
1
vote
1answer
71 views
How to reflect modified abstract syntax tree in JDT back to original java source file.?
Kindly refer "write it down" section of article
http://www.eclipse.org/articles/article.php?file=Article-javaCodeManipulation_AST/index.html
I am parsing a java source code file which has method with ...
1
vote
0answers
75 views
Is there a way to replace the Eclipse JDT's code completion list with a multi-level tree?
I know that the eclipse code completion widget can be customized to add new suggestions and even to change the order.
I'm wondering whether there's a way to replace the current list format (or ...
1
vote
1answer
288 views
Adding method/variable declarations to org.eclipse.jdt.core.dom.CompilationUnit
i am trying to add method or variable declarations to org.eclipse.jdt.core.dom.CompilationUnit, but I can't figure out how to achieve that.
If I am using CompilationUnit.types().add(...) the element ...
0
votes
0answers
68 views
Contributing to context menu for ICContainer and ITranslationUnit in Eclipse CDT?
I would like to attach my own menu to the context menu of the Project Explorer in Eclipse CDT. I have already managed to attach it to IProject using an object contribution but can't seem to get it to ...
0
votes
1answer
123 views
How to use ASTRewrite for inserting/updating body of the method using JDT?
I want to write code inside the method using JDT's ASTRewrite. I tried using ASTRewrite but its not working. Kindly help. Sample code of my ASTRewrite is below:
public void ...
0
votes
1answer
38 views
What is an efficient way of finding the classes in a project using Eclipse's JDT?
Eclipse's SearchEngine class has many methods for searching, including various flavors of search, searchAllTypeNames, etc. searchAllTypeNames seems to be oriented around finding the classes in a ...
0
votes
1answer
34 views
How can I retrieve the package name of the object using eclipse development JDT API?
I need to get the source package of the any object declared in the class. This object may be declared as a class variable or methods local variable.
I can able to find that for class object variable ...