Tagged Questions
17
votes
13answers
590 views
Java source refactoring of 7000 references
I have a huge problem. My supervisors want me to change a piece of java code which can effect whole project.
I need to change the signature of the void log(String) method which should take two more ...
6
votes
6answers
1k views
Are there any open source command line tools to refactor java code?
I use vim as my editor but I would like to get some of the same power of the IDE's for java when it comes to refactoring. Are there any commandline tools for refactoring java? I could probably hack ...
4
votes
7answers
454 views
Eclipse/Java: Is there a way to move a field from one class to another and update the references automatically?
I'm working on code that's a bit of a mess right now and am doing a lot of refactoring.
Is there a way to move a field from one class to another and update the references automatically? I've used ...
3
votes
4answers
797 views
How to refactor a static inner class to a top level class in Eclipse?
I am having trouble finding the correct refactor option for the following scenario:
I have code like this (in Outer.java):
public class Outer {
// ... class stuff
public static class Inner ...
2
votes
1answer
108 views
what is best java libraries to write custom refactoring scripts? [closed]
I plan to do complex refactoring of large project, default ide capabilities is not enough. Please also provide tutorial link if possible.
Language: java, xml
I talk about programmatic api for java ...
2
votes
1answer
98 views
Eclipse refactoring: move method inside collaborator
I have the following scenario:
public class Controller {
private ModelRepository repository;
public int getModelCount() {
int count = 0;
List<Model> models = ...
1
vote
5answers
227 views
Any tool can help refactor field into get/set pairs of method
Wondering if there is tool to assist this kind of refactoring.
1
vote
2answers
158 views
Tools for refactoring?
I use netbeans on my work and find that some things are hard to do refactoring. What tools do you recommend for me?
0
votes
3answers
317 views
Where in the NetBeans 6.9.1 source code is the code for scanning Java files and finding all the methods, variables, imports etc
I'm looking for a sample or possibly even code I can use which scans Java files and tells me key pieces of information about each class, which i can then use much like the NetBeans refactoring and go ...