From: Andre B. <and...@gm...> - 2003-04-12 19:15:01
|
> > >> Hello Devrim, >> >> I'm the author of the eclipse plugin. The way I've implemented this >> was very similar to the Visual-Studio-Plugin. I've written a native >> class which >> simply maps the access/modify routines of a text document of our >> CppTool into access/modify routines of the java-class responsible for >> the editor >> of eclipse. This was very simple since only very basic operations >> need to be written. >> - get selection text >> - set selection area >> - set selection text >> such things are very common for an editor. So if you find such an >> interface in phyton it would be possible to integrate. > > > Sure there exists such functionality in Jedit's python interface. > > But i have a question. I understand that there are refactoring > operations which will need to modify several files at once. Are those > also supported already in CppTool and in your native class ? Well, refactoring is only working at file level at the moment, so there's no interface yet defined to do modifications at project level where several files need to be changed. So the interface described above, is the only thing is needed at the moment. As you can see due the last postings, we are preparing the next step which is operating at file level. Routines to parse and modify source at the level of a file have been created during the last weeks. until later, André |