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.
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 Jav
I\'m using Eclipse JDT to build a Java refactoring platform, for exploring different refactorings in memory before choosing one and saving it. I can create collections of working copies of the source
I\'m trying to implement a HyperlinkDetector for an Eclipse plug-in and the callback method is givin开发者_Python百科g me an ITextViewer to work with.
Can I use the AST / JDT for other languages? For example to write my own parser for C# that uses somehow the 开发者_JAVA技巧AST technology?If you look at the article \"Eclipse JDT - Abstract Syntax Tr
I need to detect compile errors in the java source code after a POST_CHANGE event (usually it is fired after saving changes in the java file). I\'m using IElementChangedListener for doing that. So, fo
I\'m trying to add a call to the StaticClassName.class field access to an existing class us开发者_开发知识库ing JDT\'s Dom methods.