I am writing an Eclipse plug-in that should modify the source code in the Java editor. How can I figure the location of the source section like
- class declaration
- imports
- class fields
- methods
and so.
|
|
I am writing an Eclipse plug-in that should modify the source code in the Java editor. How can I figure the location of the source section like
and so.
|
|||
|
|
|
|
You need to understand how the JDT works in Eclipse. You could write something like this in a plugin:
Read Manipulating Java code to see what you can do with If you want more options, you can generate an AST of your
Note that setting Read the documentation online, check the API of the types involved, and try to find the source code of some example plugins. |
||
|
|
|
|
You want to modify Abstract Syntax Tree (AST). |
||
|
|