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.

learn more… | top users | synonyms

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 ...
17
votes
6answers
253 views

Implemented classes / subclasses in content assist in eclipse

What I'm trying to do is this: List<String> list = new and then hit Ctrl+Space and get ArrayList<String>() (among others) to show up in the type proposal. I thought I had this working ...
12
votes
8answers
2k 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 (search the page for ...
9
votes
2answers
8k views

Install eclipse JDT on top of CDT

I have the eclipse CDT installed, and I would like to install Java development functionality (JDT) on top of my CDT installation. I've been Googling from an hour but I can't figure out how to do this. ...
7
votes
1answer
583 views

Eclipse Helios ignores breakpoints

Eclipse is driving me nuts right now. It's probably something trivial but I just don't get it. Whenever I like to add a breakpoint, the regular icons are crossed out in the editor and breakpoints ...
7
votes
4answers
3k views

Java refactoring tools

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 Eclipse plugins) that can ...
6
votes
5answers
174 views

Deprecate class inheritance only

I would like to deprecate only the extension of a given class, not all the methods and fields contained within a class, using the @Deprecated annotation. That is, a warning will occur if you extend a ...
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?
6
votes
2answers
447 views

JDT without Eclipse?

Some time ago I wrote an Eclipse plugin which makes use of JDT to do some parsing. Now I am thinking of making a command-line version of this app. Naturally, I hope to reuse the parsing code, so I ...
5
votes
2answers
96 views

Java Generic type inference derived from method return type

public class TestCase { public static String compiles() { return getAction(); } /* public static String doesntCompile1() { return (String) getAction(); } ...
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
104 views

Is there a way to make content assist in Eclipse (JDT) show up automatically after I type “new”?

Most of the time after typing "new" I press Ctrl-space to quickly choose the necessary class. I want Eclipse to show the tooltip automatically, like VS+Resharper does.
4
votes
3answers
128 views

Is it possible to extend Eclipse Search Menu

right now in eclipse it is not possible to extend Menu defined by Other plugins by using eclipse extension: org.eclipse.ui.menus. I want to add one menu item in Search but not a search page. since ...
4
votes
2answers
290 views

Why doesn't Eclipse add @Override annotations in “Generate Delegate Methods” refactoring?

In Eclipse, if I try to apply a "Generate Delegate Methods" refactoring to a Java class like the following: class Foo implements Bar { Bar bar; } Eclipse doesn't generate @Override annotations ...
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
1answer
158 views

Eclipse JDT: Is there a refactoring to replace direct field accesses with setter/getter methods?

I know I can generate setters and getters for fields in the Eclipse source menu, but I'm very surprised it doesn't offer to replace the direct field accessors with calls to the newly created methods. ...
4
votes
2answers
507 views

How do I browse JDT source code in eclipse?

My current attempt to browse the JDT source code in eclipse: installing Eclipse Helios RCP version. importing all plugins from installation as binary files into my workspace It does not work.
4
votes
2answers
624 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 ...
4
votes
3answers
586 views

How can I define a custom action for “Open Declaration” (shortcut F3) in Eclipse

How do I register an additional handler/action/command for "Open Declaration" (aka F3) in a plugin? I want to use F3 on String literals in Java code to navigate to the files declaring resource bundle ...
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
1answer
58 views

How can I access the default JDT completion proposals in a custom Eclipse plugin?

I'm writing an Eclipse plugin, that has the functionallity of auto completion (the thing when you press Ctrl+Space). Generally, I know how it works, I made a completion for my own proposals. But the ...
3
votes
2answers
89 views

Resolved field/information - what does it mean?

I'm using the implementation of IField interface. I have a problem with understanding 'resolved field' - what does it mean? There even exists a function isResolved(), which: Returns whether this ...
3
votes
2answers
172 views

Why does this compile? The code seems to be breaking constaints on the type parameters

In the following test, TesterClass places a constraint on the relation between its two type parameters. The method func2() seems to break that constraint, and I expect it to cause a typing compilation ...
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
491 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
295 views

Unable to incorporate Eclispe JDT codeAssist facilities outside a Plug-in

Using Eclipse jdt facilities, you can traverse the AST of java code snippets as follows: ASTParser ASTparser = ASTParser.newParser(AST.JLS3); ASTparser.setSource("package x;class X{}".toCharArray()); ...
3
votes
1answer
261 views

Plugin: how to get all the types available in my eclipse Workspace?

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?
2
votes
1answer
167 views

How to specifically suppress “Comparing identical expressions” in Eclipse-Helios JDT

I tried annotating the enclosing method with @SuppressWarnings("compareIdentical") but this does not work (worse yet, the annotation results in its own Unsupported ...
2
votes
3answers
155 views

Creating new classes from code

Is there a way to create a new java class during execution? All the information about the class (name, modifiers, methods, fields, etc.) exists. Now I want to create that class. An idea was to create ...
2
votes
2answers
192 views

Modify Java source code programmatically

I used the EMF ANT-Task XSD2Java to generate Java code from an existing XSD. Unfortunately the ANT-Task works not as correct as the manual tool and generates a package like ...
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
64 views

How do I get access to my java source model (from JDT) from a GEF editor?

I have a basic GEF editor where I want to use the model from the currently open/selected java source editor to display extra information, but I can't figure out how to get access to java model from ...
2
votes
2answers
380 views

How does JUnit find the eclipse plug-in being tested?

I am writing a plug-in (ClassRefactoringPlugin) that examines source code in Eclipse 3.6.1. The plug-in contains a CallData class that examines a Java source file and figures out which Java elements ...
2
votes
1answer
208 views

How to programmatically specify JRE javadoc location in eclipse?

You can manually set it via _Package Explorer / JRE System Library / rt.jar -> contextmenu -> properties - Attach Javadoc.. And the settings are stored in ...
2
votes
1answer
44 views

Place variable one context up in Eclipse JDT

I've been looking for the Eclipse JDT refactoring tool which allows me to quickly change if (...) { Object x = blablabla; } to Object x; if (...) { x = blablabla; } // insert code using x here ...
2
votes
1answer
202 views

JDT ASTParser to get the value of a string field

Is there a way to use jdt ASTParser to get the value of a String field declared in a java file. Actually what I need is to resolve any possible dependencies from other classes e.g. public String str = ...
2
votes
1answer
99 views

eclipse: calling organizeimports programmatcally

I'm trying to execute 'OrganizeImports' programmatically on files that I'm editing programmatically. My code looks like this: final ICommandService cmdService = ...
2
votes
1answer
63 views

Is there any way to run eclipse plug-in applications without fully start the eclipse platform

Consider a simple "Hello world" plug-in, how can I run it without having to fully launch the eclipse platform?
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
2answers
3k views

How to install jdt.core in eclipse locally?

I'm needing to install the eclipse JDT.Core plugin locally (eg download the file with site.xml etc), as opposed to installing it remotely due to the horrible firewall at work. Can anyone suggest where ...
2
votes
3answers
1k views

What does “Computing additional info” mean?

Eclipse Helios periodically starts running a job which displays "Computing additional info". During this time, Eclipse is very sluggish, bordering on unusable. What does this job do? Can I shut it ...
2
votes
4answers
3k views

How do I set the Eclipse build path and class path from an Ant build file?

There's a lot of discussion about Ant and Eclipse, but no previously answered seems to help me. Here's the deal: I am trying to build a Java program that compiles successfully with Ant from the ...
2
votes
2answers
550 views

In Eclipse, how to set JavaDoc URL on a classpath entry programmatically?

I have an Eclipse plugin, that among other things, can create a project and give it several classpath entries. This in and of itself works fine. These jars do not have source included in the, ...
2
votes
2answers
394 views

Generate bytecode from Eclipse's CompilationUnit

I am not working on an Eclipse plug-in project; however, I use an external library that generates an instance of org.eclipse.jdt.core.dom.CompilationUnit. Is there a way to generate Java bytecode from ...
2
votes
3answers
1k 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: 2 Bundle-Name: ...
2
votes
1answer
301 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 project starting point ...
1
vote
1answer
21 views

Mark Occurences for binary files in STS

I have created a project using maven in Spring STS. I opened a source file(class file which is downloaded by maven automatically) and placed cursor on methods/variables those occurrences not ...
1
vote
1answer
125 views

Resolving overloaded methods with ASTVisitor in Eclipse JDT

I am currently working on an academic project which employs an ASTVisitor to create a basic calltree. For this purpose it is needed to associate the invocation of a method with its declaration. ...
1
vote
1answer
72 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 2 3