Tagged Questions

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
962 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
308 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
337 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
156 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 ...
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
219 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
487 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
216 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
247 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) { ...
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
177 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
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
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
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
22 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
16 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
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
64 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
49 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
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
835 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 ...
0
votes
1answer
166 views

IFields for all variables from CompilationUnit

I need to get IField or IJavaElement references for all variables in my source code. I use plugin, get a ICompilationUnit from which I am able to read all top-level objects using: for( ...
0
votes
2answers
183 views

Eclipse: Break Program?

How do you break (pause) a Java program in Eclipse? (I'm not talking about breakpoints. I'm talking about randomly pausing a program without knowing what it's currently executing, like in Visual ...
0
votes
0answers
66 views

resolver identifer when visiting org.eclipse.jdt.core.dom.MethodInvocation

I am using Eclipse ASTParser and I have a visitor , when I visit any MethodInvocation I want to resolve the variable that called the method. import org.utils.Class1; Class1 c = new Class1(); ...
0
votes
1answer
108 views

How to know if a Variable Binding represents a local variable, in Eclipse JDT?

I've noticed eclipse.jdt.core.dom variable bindings (IVariableBinding) offer boolean methods to check if they are representing a field, Enum constant or parameter ( isEnumConstant(), isField() and ...
0
votes
1answer
183 views

How to find an anonymous class or a local type using the JDT Java Search Engine?

I want to programmatically get the model of an anonymous class or locally declared type (i.e. an instance of IType) from the JDT Java Search Engine, known by fully qualified name. So far, I did well ...
0
votes
1answer
320 views

Reuse Eclipse's Plugin Manifest Editor

I want to have the PluginManifestEditor functionality in my view(not in a editor). Also I need to add some extra pages to it(along with the existing ones like Overview, Dependencies, runtime etc.). I ...