Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
0 answers
77 views

implementing extract method refactoring using jdt and ltk

I am currently working on my project which requires me to implement extract method refactoring using the eclipse jdt and ltk. I am new to this topic, can anyone point me to some walkthrough example? I ...
Bridget Nyirongo's user avatar
0 votes
0 answers
382 views

Triggering 'extract method' in Eclipse Refactoring/LTK API

I am currently developing an Eclipse Plug-In that will let me trigger refactorings, using gestures. I've been trying to trigger 'extract method' programmatically in Eclipse for a while now but I am ...
Rizz's user avatar
  • 56
5 votes
2 answers
3k views

Refactoring java code using scripts

Is there an eclipse based solution to refactor Java code using scripts? I've read about the Eclipse Language toolkit, but it seems that it implies the creation of a plugin, which sounds like overkill ...
Mikarnage's user avatar
  • 893
7 votes
2 answers
368 views

How to extend Eclipse's rename refactoring to trigger another refactoring after its completion

I'm trying to extend eclipse's rename refactoring to call another rename refactoring. public class Person { ... } public class PersonDAO { public List<Person> getPersonByName(...
Gustavo Schmidt's user avatar