Tagged Questions
The JDT project provides the tool plug-ins that implement a Java IDE supporting the development of any Java application, including Eclipse plug-ins.
32
votes
1answer
1k views
Why is IJavaProject.findPackageFragmentRoots returning an empty array?
Every time I call IJavaProject.findPackageFragmentRoots(IClasspathEntry cpe) and pass it an IClasspathEntry of kind CPE_PROJECT, it returns an empty list. I paused the debugger and ran the following ...
23
votes
4answers
969 views
What is the difference between javac and the Eclipse compiler?
I asked this in a comment, but figured it's a separate question:
Is Eclipse's compiler just a wrapper around the same compiler core that the javac program is wrapped around, or is it a separate ...
8
votes
2answers
313 views
How to customize hashCode() and equals() generated by Eclipse?
It is recommended and sometimes necessary, classes that represent values (value classes) to override hashCode(), equals() [and optionally toString()] methods.
The values that these methods return ...
6
votes
6answers
339 views
In Java, can “void” be considered a primitive type?
I've noticed eclipse JDT uses void as a primitive type. Can this be considered correct?
5
votes
2answers
224 views
What is “inner class emulation” in Java?
just found this bit, while reading eclipse JDT's documentation:
IMethodBinding.getParameterTypes(): . . .
Note: The result does not include synthetic parameters introduced by inner class ...
4
votes
1answer
157 views
Can anyone give me an example, where the eclipse JDT creates an AST with a CAPTURE binding?
can anyone give me an example where the eclipse JDT creates a CAPTURE binding?
I've read several capture conversion tutorials, but when I copy-paste exemplifying code snippets, I can never find a ...
4
votes
2answers
623 views
Eclipse autocomplete broken
Eclipse autocomplete is not working and is always telling me merely "No Default Proposals".
This is true whether I try to autocomplete for code under java.util or in my own project.
I'm running ...
3
votes
2answers
70 views
how to properly move one or more packages into another package in java using code
I am developing an application [desktop swing application] which requires me to do refactoring via code. [I know the interface and feature is already provided by the eclipse IDE but I am required to ...
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
3answers
220 views
In an AST Visitor, how can I know which node's property I am visiting?
I'm programming an AST Visitor (eclipse JDT).
An EnumDeclaration node contains the following structural properties:
JAVADOC, MODIFIERS, NAME, SUPER_INTERFACE_TYPES, ENUM_CONSTANTS and ...
3
votes
2answers
490 views
Eclipse JDT: Call 'correct indentation' programmatically?
I am working on an Eclipse plugin that modifies Java code in a user's project.
Basically the result of this plugin is that Java annotations are added to some methods, so
void foo() { ... }
...
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
0answers
218 views
Eclipse javadoc view (and hover) blurry text
I am using Eclipse 3.7 on Windows 7, and the text in the javadoc view is blurry, no meter what font or size i choose.
Here you can see screenshot.
The same is happening in the web browser view, ...
2
votes
2answers
249 views
Simple JDT example of code generation
I'm trying to write an Eclipse plugin. It will have dependencies on the RCP for basic stuff and JDT for Java code generation. It consists of a Wizard / WizardPage which asks for a package and a few ...
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
4answers
328 views
Is there a way to make Eclipse add static imports without autocomplete?
Eclipse can add unambiguous classes with an "on-save" action, but it will not resolve static functions. I don't always use autocomplete, and going back to trigger it is cumbersome.
e.g. I often write ...
2
votes
2answers
220 views
Using Eclipse's JDT, how does one get an IType from a class name?
Is there a simple, straightforward way to get an IType from a class name? I think there must be some static method somewhere. Basically, I'd like to do something like:
IType objectType = ...
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
1answer
51 views
Eclipse JDT: Is there a keyboard shortcut for opening new editor panes?
I often use the multi-pane editor feature in Eclipse to view multiple files simultaneously, and find it very strange that there appears to be no way other than dragging the tab with the mouse. Does ...
1
vote
1answer
97 views
eclipse jdt automatic method stub generation
i am creating java source files using eclipse JDT & AST. There are cases that generated source files are implementing or extending something.
is it possible to add method stubs automatically ...
1
vote
1answer
178 views
Running JDT compiler from command line with Eclipse configuration file
This help page describes how to run the Eclipse formatter from the command line, giving it formatting settings exported from Eclipse. This is great, for example, for creating a formatting Ant task ...
1
vote
1answer
181 views
Stop debug stalling in Eclipse
I recently installed eclipse on my Mac pro. I had previously been using eclipse on my mac book. When I run an app engine project on the mac book, it works fine. When I run it on my mac pro it ...
1
vote
2answers
127 views
Eclipse, JDT: Find a file on the classpath knowing its fully qualified name
Given the name ch/mollusca/sample/snippet.xml, is there an easy way to get a hold of this file in JDT code, when it is located in the projects classpath either as a source file or inside a JAR?
The ...
1
vote
2answers
281 views
Is it possible to run the Eclipse JDT compiler from the command line, like javac?
I'd like to do some command-line Java compiling of individual Java source files on a machine that has Eclipse installed. However, I don't have permissions to install a full Java SDK on this machine.
...
1
vote
2answers
145 views
Getting field type in a method in eclipse
How do I programmatically get the field type from a statement inside a method like this :
Foo foo = getSomeFoo();
If it is field, I can know the type of the element.
1
vote
1answer
190 views
Integrating Eclipse JDT Core into a new editor
I'm building a Java IDE and am trying to implement autocompletion or intellisense. After looking around for something that will do most of the work for me (not reinventing the wheel etc) I've pulled ...
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 ...
1
vote
1answer
177 views
Problem using the Eclipse Abtract Syntax Tree
I'm trying to use AST parser in a non-plugin environment. The code compiles, but I get the following runtime error:
Exception in thread "main" java.lang.NoClassDefFoundError: ...
1
vote
2answers
455 views
How to make an Eclipse debug launcher that launches a Class
I'm trying to make an Eclipse launch configuration that I can launch programmatically, kind of building a custom debugger if you like.
I've already got an ...
0
votes
1answer
23 views
Getting synthetic methods from an ITypeBinding
I'm playing with the ITypeBinding that I get when calling resolveBinding() on an ASTNode in the AST made by ASTParser and a K_COMPILATION_UNIT from a Java Project.
For example I have resolved an ...
0
votes
1answer
17 views
How to determine the modifiers for a method or field in Eclipse JDT?
I am writing some simple AST visitors for the Eclipse JDT. I have a MethodVisitor and FieldVisitor class which each extend the ASTVisitor. Take the MethodVisitor for instance. In that class' Visit ...
0
votes
0answers
40 views
Eclipse content assist broken only in one file
Content assist always shows "No Default Proposals" in one of my Java classes, but it works as expected elsewhere in the project/workspace. It worked at one point in that file too, but stopped working ...
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
2answers
29 views
Get package childs from a package
In Eclipse how can I get the packages childs of a package?
Consider this example:
+ org.stack
org.stack.test
- StackTest.java
- Stack.java
When we do IPackageFragment.getChildren() ...
0
votes
4answers
73 views
eclipse shortcut for enabling / disabling JAVA breakpoints
I'm looking for a shortcut to completely enable / disable all JAVA breakpoints (analogue of pushing the "Skip all breakpoints" button in Debug view ), not to enable / disable them on a row-by-row ...
0
votes
2answers
65 views
add/remove attributes and methods
i am trying to develope a system where a user should b able to make modifications [add/remove attributes and methods] in the actual java file. while there are methods provided by API to create new ...
0
votes
1answer
50 views
Check Annotations of Methods using eclipse JDT library
I am building a prototype of a static analysis tool, for which I intend to use eclipse to do the heavy lifting. How can I check what annotations are applied on a method when I visit the declaration ...
0
votes
2answers
151 views
IDE development for CodeIgniter PHP framework in ECLIPSE
I am quite new to the eclipse IDE. I want to develop an IDE for codeigniter PHP framework. How I start. What is difference between Eclipse for C++ and Eclipse for Jave EE?
How I get start?
Any kind ...
0
votes
2answers
78 views
How to get an IType from a class name in Eclipse JDT
I'm implementing a variant of the JUnit New Test Suite Wizard, and instead of getting test classes from the current project, I need to get them from another source. They come to me as strings of ...
0
votes
1answer
124 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
0answers
53 views
how do i get annotations separated from abstract syntax tree in java?
I am writing a java source file with contract for method, and want to generate Abstract syntax tree for the code and how do i separate @ensures and @requires annotations in AST ?
How to access them?
...
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 ...
0
votes
3answers
67 views
Running Eclipse JDT from sources
I want to run Eclipse Java Development Tools form source code, but I'm stuck after checking out codes from eclipse repositories.
I've checked out all plugins from org.eclipse.jdt and imported them ...
0
votes
1answer
851 views
java.lang.NoSuchMethodError: java.lang.NoSuchMethodError
Running Tomcat 7 through eclipse
The error reported is:
javax.servlet.ServletException: java.lang.NoSuchMethodError: ...
0
votes
1answer
144 views
Eclipse JDT adapter to java.lang.reflect
I need to integrate Eclipse JDT into some existing API that is based on java.lang.reflect. My questions are: Is there an existing interface or adapter? What is the best way to do this? Can anyone ...