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

1
vote
0answers
27 views

jdt: Check if IField is an reference type

I'm using the jdt java model to get information about my existing projects in the workspace. With the getFields() method of IType I get all fields of a particular class. But I need to know if a ...
0
votes
2answers
52 views

IJavaProject without Eclipse Environment in JDT

I have an exported Eclipse Java Project in my server and I want to be able to compile the project and use ASTParser with JDT. I'm able to compile the project using BatchCompiler, however it runs on ...
4
votes
1answer
35 views

Change Eclipse template for auto-generated main method?

When I create a new class in Eclipse Juno and auto-add a main method, I get the following: public class Example { /** * @param args */ public static void main(String[] args) { // TODO ...
0
votes
2answers
25 views

Search Engine in eclipse

I am developing a plugin to remove the sysout statements in an eclipse workspace. As part of this plugin I also want to provide the functionality to search and view the instances of sysout statements ...
0
votes
1answer
26 views

Use of JDT compiler in ant build file [closed]

I would like to use Eclipse's incremental compiler from the command line. The problem is that although the classpath is set, I get the following error: Class not found: ...
0
votes
2answers
40 views

Tracking Eclipse JDT Compiler Error Messages (IProblem)

I am currently developing programming tutors. Those tutors are standalone Java applications. I use Eclipse JDT to parse Java source code and build the corresponding abstract syntax tree. Moreover, I ...
1
vote
1answer
30 views

Eclipse JDT IJavaProject get root file

I have the below code fragment which returns the relevant IJavaProject from a CompiliationUnit: IJavaProject project = compilationUnit.getJavaProject(); I need to find a file in the root of the ...
4
votes
2answers
79 views

Formatting Source Code programmatically with JDT

I am generating some classes with JDT. Afterwards I would like to format the whole ICompilationUnit, just as if I pressed Ctrl+Shift+F (Source > Format) in an open Editor without a selection. Any ...
0
votes
0answers
39 views

Unable to use WindowBuilder in Eclipse for Java Devs

Im sure this is an easy question but I have searched and Im unable to find a solution. What Im trying to do is access the WindowBuilder utility in design view to edit the GUI of an app. When I switch ...
0
votes
0answers
41 views

Create an Override method with AST JDT

Hello to everyone I am writing a tool in eclipse which make use of JDT. The tool will traverse a IJavaProject and find out all the couples of SuperClass-SubClass. If there are methods in SuperClass ...
0
votes
3answers
74 views

Eclipse JDT Compiler (ECJ) throws NPE in Java 1.7

I'm getting an NPE from the ECJ (version 4.2.1) compiler when running in JRE 1.7 the same project compiles properly on JRE 1.6. A CompilationProgress monitor shows that there are Total of 2493 tasks, ...
2
votes
2answers
92 views

How to convert AST to JDT Java model

I am writing unit tests for my plugin that makes use of IType and IMethod interfaces from JDT. To write unit tests I would need to instantiate such interfaces. Answer to this question shows how to ...
1
vote
2answers
78 views

suitable data structure for storing java project infromation

I am extracting information from java source code of a project using AST parser. Information includes:class name, methods, their return type and parameters and variables. So which type of data ...
2
votes
2answers
97 views

extract interface that a class implementing using AST parser

I am compiling a project source using AST parser. In what way i can extract class hierarchy infromation, that is whether it is implementing any interface or extends from another class?
4
votes
2answers
82 views

Boolean comparison of ints when RHS == Integer.MAX_VALUE, why does this loop terminate? [duplicate]

I'm trying to work out why this loop terminates... @Test public void test() { int counter=0; int from = 0; int until = Integer.MAX_VALUE; while(counter <= until) { ...
1
vote
1answer
33 views

Using JDT: How can I find out if a method is overriding another method

I am traversing an AST using a JDT ASTVisitor. private void removeOverrideAnnotations(CompilationUnit astUnit) { astUnit.accept(new ASTVisitor() { @Override public boolean ...
0
votes
2answers
66 views

extract inner classes using eclipse JDT

i want to parse a project in which some classes have inner classes.how can i extract inner classes name other information using eclips JDT?
0
votes
0answers
26 views

Eclipse - no “java project” in menu after installation JDT plugin

I was using Eclipse for C/C++ on OpenSuse and installed JDT plugin. Eclipse showed that everythign went fine, but in the menu "File->New->Project" there's no item "Java Project". Something went wrong ...
0
votes
0answers
57 views

JDT-Core and Jasper reports do not work together

i have been working with Tomcat 6 and Jasper Reports, but when i start tomcat jdt compiler crash 'cause the jasper jar in tomcat use another version of jdt compiler. I'm working with the lastest ...
2
votes
1answer
57 views

How to efficiently find all subtypes of an IType

I am currently working on custom refactoring tools based on JDT. At one point I would like to find all subtypes of a type, much like the "Type Hierarchy" view in eclipse does. I wrote a recursiv ...
4
votes
4answers
74 views

How to find if the IType is an abstract class

I have the IType object of a class. I want to know if the class is an abstract class or not. Is there any method available in the IType or ICompilationUnit to determine the same (other than ...
1
vote
1answer
68 views

How to get all visible variables for a certain method in JDT

I want to develop an Eclipse plug-in which get all visible variables for a specific method. For example: public class testVariable { String test1; Object test2; void ...
2
votes
1answer
41 views

JDT: Missing semicolon when replacing a MethodInvocation with another

I'm trying to use Eclipse JDT's AST model to replace one MethodInvocation with another. To take a trivial example - I'm trying to replace all calls to Log.(i/e/d/w) with calls to System.out.println(). ...
0
votes
1answer
29 views

Get keyboard in plug-in of eclipse jdt

I want get keyboard in plug-in of eclipse jdt. Example: When I pressed "aaa" then my plug-in must get "aaa". ok? How can I do?
3
votes
1answer
59 views

How to get down to StringLiterals with Eclipse AST?

I need to create an Eclipse plugin that displays a tooltip when I hover the mouse over a String literal. But only if that String literal is the first parameter of a special method. Here is the ...
1
vote
2answers
68 views

Collecting Java class information

Is there any way to collect the information of a Java Class through a plugin? I wanted to collect information such as the package it belongs, the imports it has, if it has implements or extends. ...
1
vote
1answer
57 views

why does m2e plugin for eclipse insert optional attribute to src and what does it do

I started noticing these attributes in my .classpath file after running Maven -> Update Project... tool with Update project configuration from pom.xml option checked: <?xml version="1.0" ...
0
votes
1answer
18 views

Where do I get up-to-date versions of org.eclipse.jdt for Maven?

I would like to use the Eclipse AST to generate source code. My project is managed by Maven and I would like to simply add dependencies for the compiler. Unfortunately, the most recent version I found ...
0
votes
1answer
70 views

What is org/eclipse/jdt/internal/compiler package for?

I was profiling a java based web application(InsecureWebApp from OWASP) and came across methods from org/eclipse/jdt/internal/compiler package. I googled it to know for what purpose they are used.. I ...
0
votes
1answer
37 views

Retrieving a java element's javadoc url in Eclipse

Is there an API method in Eclipse to retrieve the URL for the Javadoc of an element? I noticed that org.eclipse.jdt.ui.JavaUI appears to have a static function that accomplishes just that. You feed ...
4
votes
1answer
83 views

What is the role of I*Binding in Eclipse JDT?

My current understanding is that JDT provides us two different interface and class hierachies for representing and manipulating Java code: Java Model: provides a way of representing a java project. ...
0
votes
0answers
25 views

How can I monitor changes to project properties in Eclipse?

How can I listen for changes to project properties (ie, things that are changes in a project's Properties dialog pages)? I know that IPreferenceStore allows me to register a property change listener, ...
0
votes
1answer
53 views

How to let Eclipse JDT auto-generate methods at the end of the class?

Is there a way to let Eclipse JDT (Indigo and newer) auto-generate methods at the end of the class, rather than as the next member, when you type the name of an unimplemented method? Ideally, methods ...
2
votes
2answers
75 views

How to get all the references of static field with JDT

I found Java: Find all callers of a method – get all methods that call a particular method that gives a hint on how to find all the callers of a specific method. Then, how to get the users of a ...
2
votes
4answers
113 views

How to get the enclosing method node with JDT?

When I have a method foo() that calls bar(), how can I get the foo() AST node from MethodInvocation node (or whatever statements/expressions in the method)? For example, I need to know the IMethod foo ...
0
votes
2answers
75 views

Finding out the type of invoked method in JDT

In this code, prosseek.B#bar() method invokes prosseek.SuperA#foo(). package prosseek; public class SuperA { int i = 0; public void foo() { System.out.println(i); } } public ...
1
vote
2answers
63 views

How can I set the region (=set of java Elements) parameter in JDT TypeHierarchy?

JDT Tutorial an example code to get the type hierarchy using JDT. How can I set the region (=set of java Elements) parameter? When I have code A that has SubClass B, and SuperClass C. How can I ...
0
votes
1answer
52 views

installing pydev or PDT without JDT

I've been spending a little time trying to see how bare bones an Eclipse install I could get. I've found that the available packages tend to have things that I don't really need, and since eclipse is ...
0
votes
1answer
64 views

How can I store values inside JDT/ASTVisitor()?

I have a code that detects the start position and length of invocation of a method in the source as follows. I need to store those data outside the ASTVisitor(), but using final int, I got an error. ...
1
vote
2answers
100 views

Getting startPosition and length of a method invocation using JDT

Let's say I have this Java source code. How can I get the startPosition and length of "extractedMethod(amount)" invocation? package smcho; public class Extract { String _name = ""; public int ...
1
vote
0answers
47 views

Why is there a different result for IType.getAnnotation(“Annotation”) and IType.getAnnotations()?

I have developed a custom Eclipse Builder, which reads metadata from type annotations. Whenever I remove the desired annotation from a type, the following code still gets the IAnnotation object in ...
4
votes
1answer
135 views

Why I got no super classes with getAllSuperclasses() in JDT API?

I have class A, and class B that inherits A in Eclipse workspace. The issue that I have is that I got nothing when I tried to get the super types of type B using eclipse JDT API. This is the code ...
2
votes
2answers
197 views

Eclipse JDT ASTParser - Issue with MethodVisitor

I am writing some code to parse java source code. I am experimenting with Eclipse JDT AST Parser. My code is given below. (Parsing code). I am testing the parser against a Mailer application that I ...
0
votes
0answers
30 views

Refreshing (F5) eclipse environment programmatically [duplicate]

Possible Duplicate: how to refresh eclipse workspace programatically? I use eclipse JDT/LTK API to change the Java code in workspace outside eclipse IDE. The issue is that after using ...
2
votes
2answers
146 views

How to run Eclipse Project using Escripts plugin?

I have installed Eclipse Escripts plugin, but it does not seem to have proper documentation and I am very new to Eclipse JDT API. I am trying to write a script which can run Server and several ...
1
vote
1answer
85 views

Can I use JDT search engine while parsing a source from JDT AST

I'm using JDT AST to parse a given source. I want to find the references of a given object/variable when it triggers the relavant visitor when using AST. E.g.: Consider the following code: public ...
4
votes
1answer
143 views

Oracle JDK and Eclipse JDT compilers disagree! Which is compiling this incorrectly? Unusual generics and inferrence

I have a piece of code which is compiling inconsistently between Oracle JDK 7 and Eclipse JDT 7, but since I'm not sure about which compiler is making the mistake(s) I thought I should ask for ...
0
votes
1answer
36 views

How to find out if any changes were recorded in an ASTRewrite

Assuming that I have an instance of ASTRewrite of which I can not make assumptions (ie returned by a overridable method). I would like to test if the rewrite actually stores any modifications to the ...
15
votes
2answers
303 views

How to add a code snippet to method body with JDT/AST

I'm trying to generate Java source code with JDT/AST. I now have MethodDeclaration and want to add a code snippet (from another source) to the method body. The code snippet can contain any Java code, ...
0
votes
2answers
134 views

Can I generate eclipse workspace and project manually/programmatically?

I need to test JDT/LTK examples, and in order to do so I need to create eclipse workspace and project manually or programmatically. How can I organize a directory so that I can get valid workspace ...

1 2 3 4 5