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
972 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
340 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
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 ...
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
492 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() { ... }
...
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
4answers
329 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 = ...
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
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
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
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
289 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
456 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
0answers
8 views
Detecting mouse selections in Eclipse plugin
I am developing an Eclipse plugin where I would like to detect selections in the editor that happen implicitly (e.g. during a debugging session).
I can detect the mouse down, double click and up ...
0
votes
0answers
69 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
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
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
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
451 views
How to configure eclipse background color for pop ups in Java Editor
In eclipse JDE, when I move my mouse over a Java element, a pop up will show up an with 'Press F2 for focus'. My question is how can I configure the background color of that popup? I have gone to ...
0
votes
2answers
187 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
1answer
28 views
Unwanted navigator-like input field at the top of each editor tab in eclipse debugger perspective
I'm not sure what I have pressed when debugging, but now all my editor tabs have additional input field at the top which shows something like pkg->class->method. Thankfully, this navigation input is ...
0
votes
1answer
70 views
Eclipse, JDT: Marker delete is not reflected in GUI after ASTRewrite
Ok, so I have a quickfix/refactoring that deletes or changes the type of an offending field from a Java class, if the field is not present in an external DSL.
The problem is that the marker that ...
0
votes
1answer
470 views
Eclipse refactoring plugins
I am after more refactoring options than the default that comes in Eclipse 3.6. Can anyone list any other plugins that do refactoring and what they do ?
My original problem was i wanted to re-order ...
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
59 views
Eclipse Javadocs: How to *easily* create @see links?
I often want to use @see when writing classes & methods but I usually end up not doing so because it's so annoying trying to write out @see links by hand.
Is there some easy way to do this, built ...
0
votes
1answer
185 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
323 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 ...