The JDT project provides the tool plug-ins that implement a Java IDE supporting the development of any Java application, including Eclipse plug-ins.
0
votes
2answers
33 views
how to get fully qualified class name from IResource object
I have the IResource object of a java class. I need to get the fully qualified class name from this object.
my IResource.getFullPath().toString() gives me /myProject/src/abc/def/Myclass.java
i want ...
1
vote
1answer
19 views
Eclipse Plugin Developement: Including JDT functionality in my own editor
I am making a eclipse plugin. I began with the default MultiPageEditor wizard and implemented the specific functionality that I wanted. Now, I wanted to get features like Java syntax highlighting, ...
1
vote
1answer
33 views
eclipse JDT setting the project
I am a beginner to Eclipse JDT. I was going through some tutorial and found one good example for creating the java file. In this below example in which project they will create the package and java ...
0
votes
0answers
9 views
How to get ISchemaAttribute
My requirement is I need to open JavaAttributeWizard when I click one toolbar icon. So I checked the constructor, it takes JavaAttributeValue and for JavaAttributeValue it is taking one parameter as ...
2
votes
2answers
90 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
72 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
93 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?
0
votes
0answers
16 views
Using Itype.getMethod in velocity
I have a requirement where in i want to copy the fields and getter/setter methods from one class to other. in velocity template can i write field.declaringType.method()..
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?
2
votes
1answer
55 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
65 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 ...
1
vote
2answers
58 views
JDT resolvebinding() always return null, using UIMA
I am using JDT as a library to annotate source code in UIMA framework.
In UIMA framework, I obtain the source code in char[] form.
Right now I want to figure out those variables binding in source ...
2
votes
1answer
40 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
28 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?
6
votes
2answers
481 views
Eclipse + Java 8 support?
How can I get Java 8 to work with Eclipse?
I have followed this guide but doesn't work:
http://tuhrig.de/?p=921
Also seen
http://wiki.eclipse.org/JDT_Core/Java8
but they don't explain what to do ...
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.
...
4
votes
1answer
71 views
Unit testing Eclipse's Editor logic in plugins : existing mocks/frameworks?
I'm working on a plugin which editor augments on the existing JDT (Java) editor
using aspects.
Now, Eclipse text editors that derive from AbstractTextEditor are
organized in clear components, ...
4
votes
1answer
79 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
1answer
51 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
70 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 ...
0
votes
2answers
85 views
Scanning code base for use of deprecated methods
I've been tasked with developing a tool that scans a large collection of Java projects (~7000 .java files) for the use of deprecated methods/properties/APIs. It's been specified that the tool scans in ...
2
votes
4answers
112 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
0answers
42 views
What are the greatest difficulties faced by developers of eclipse plugins? [closed]
I'm asking this question as a kind of a survey amongst developers of eclipse plugins.
In my opinion, what's most difficult when developing an Eclipse Plugin is object instantiation. In many cases ...
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 ...
2
votes
1answer
107 views
JDT SearchEngine throws a NullPointerException
I'm trying to use JDT SearchEngine to find references to a given object. But I'm getting a "NullPointerException" while invoking the "search" method of org.eclipse.jdt.core.search.SearchEngine.
...
15
votes
2answers
293 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, ...
1
vote
2answers
171 views
Find class usages
I am creating an Eclipse plugin to rename Types, Methods and Fields. Using the following code I can rename the class and the source file but I don't know how to find the usages of the class in other ...
2
votes
1answer
62 views
Comment Line Dissapears After Rewriting a Node
I was writing simple refactoring and noticed a strange thing. The comment line before the node I am rewriting disappears after refactoring. Also comments after the node in question are transferred ...
2
votes
1answer
97 views
Eclipse JDT AST: how to find a calling method returns value of an instance variable?
I'm using Eclipse JDT AST to parse a given java source code. While parsing the code, when it hits a method invocation, I want to find out whether that particular method returns or sets a value of an ...
0
votes
1answer
309 views
Eclipse AST variable binding on standalone java application
I'm trying to use Eclipse ASTParser in order to analyse and, if possible, add some code to some classes. One of the information I need requires to have bindings, but because this is a standalone ...
3
votes
1answer
225 views
How can I add an Eclipse Quick Fix for a custom Java marker?
I'd like to report custom problems for Java files to the Problems View of Eclipse and provide Quick Fixes for them.
The standard way to do is to use the extension point ...
0
votes
1answer
59 views
Jar signing in eclipse, how to resign after altering source
I had to alter some source in org.eclipse.jdt.core.dom.ASTNode, I used various eclipse plugins as "headless" libraries in a application design to re-factor source code in a specific way.
I only ...
0
votes
1answer
99 views
Eclipse JDT dom refactoring, extract class member from one compilation unit & add into another
This is a groovy script that extracts a class member from one compilation unit stores it in a model named Member then attempts to add it to another compilation unit.
I'm having issues with the last ...
0
votes
1answer
82 views
How to activate Content Assist - Java Proposals
I have installed eclipse in Ubuntu 12.10. After working for a few days, I created my first CDT C++ project and stay there for while. Now when I go back to my Java project I found that when I type in a ...
2
votes
1answer
66 views
How to access JDT “static” icon from an eclipse plugin?
I found out how to access some icons:
ISharedImages images = JavaUI.getSharedImages();
Image image = images.getImage(ISharedImages.IMG_WHATEVER);
However, in ISharedImages are constants modifier ...
0
votes
0answers
37 views
Getting package fragements from an JavaProject in eclipse
I am developing a plugin in eclipse . I want to get all packagefragements from a IJavaProject . I am using this api .
IJavaProject project = JavaCore.create(project);
project.getPackageFragments();
...
0
votes
2answers
56 views
How to find when and why Java class interface has changed using SVN/GIT
General question: How find when&why Java class interface has changed using SVN/Git
I'm using Eclipse JDT Core, exactly class SingleNameReference in one of my projects.
To overcome bugs I want to ...
0
votes
1answer
116 views
Comparing ASTNodes in Eclipse
I'm writing a plugin for Eclipse that periodically walks the Abstract Syntax Tree provided by Eclipse JDT and places IMarkers on certain nodes - for example, a printStackTrace() is highlighted for ...
0
votes
0answers
203 views
Rewrite method incorrectly rewrite change to ICompilationUnit the second rewrite update
I have this method UpdateProperty:
public void run(ObjectNavigatorModel model, String propertyKey,
String propertyValue) {
// get reference to CompilationUnit
ICompilationUnit cu = ...
1
vote
1answer
79 views
Programmatically folding in Eclipse
I'm looking for a (clean) way to programmatically fold/unfold methods (or a bit more lowlevel: an internval of lines) in a JDT-Editor in Eclipse.
I already read documentation about the basic concept ...
3
votes
0answers
160 views
How to convert from JavaElement to its declaring ASTNode?
I read this article from Eclipse wiki (http://wiki.eclipse.org/JDT/FAQ#From_an_IJavaElement_to_its_declaring_ASTNode) but I still can not convert from a IMethod to its corresponding MethodDeclaration.
...
0
votes
0answers
39 views
Java core/JDT: SearchPattern, IJavaSearchConstants
I have small question on the parameters for creating a search pattern. I make use of the search engine by creating a search pattern with the parameters "IMethod" and "IJavaSearchConstants.REFERENCES" ...
0
votes
0answers
46 views
IType.createField() does not work when comments of first method is collapsed
In Eclipse JDT, I´m trying to create a field declaration inside a type using IType.createField(..) method.
It works fine, except when the comments of the first method is collapsed. In this case I ...
0
votes
3answers
172 views
How to copy java file to a workspace programmatically?
I am trying to create a java file from scratch using AST but it is painstakingly taking me longer to finish. What I have in mind is create the java file, then create the project and package and then ...
0
votes
0answers
45 views
How to resolve constant value referenced by an annotation attribute in an eclipse plugin?
I am writing an eclipse plugin that extracts values from an annotation and displays it in a view. One of the attributes is of string type and sometimes it is set with a constant.
For example:
...
0
votes
0answers
36 views
Eclipse jdt extention - watch certain method calls, maintain a local tree and provide auto-completion
I'm new to the Eclipse jdt plug-in field. Want to tackle a problem I'm facing. Need your help to point me the direction -- what's the main approach and the route I should follow.
1) Monitor certain ...
4
votes
1answer
316 views
Disabling Eclipse code formatting for part of a javadoc
I have a Java class for which part of the javadoc is actually generated as part of the build process: the return value of a method (a static String value) is inserted into the source file, much like ...
0
votes
1answer
28 views
in jdt how to retrieve the absolute path of a jar if it is linked to the project?
i am writing a plugin for eclipse 4.2 that will upload the jars the user adds to a project.
in order to do this i need to want to retrieve the location of the jars in the class path.
the problem is ...
1
vote
1answer
148 views
Where is a package org.eclipse.jdt.core.refactoring.descriptors
I want to use org.eclipse.jdt.ui.refactoring.RenameSupport class
RenameSupport renameSupport = RenameSupport.create(packageFragment, newName,
RenameSupport.UPDATE_REFERENCES);
...
