Tagged Questions

11
votes
2answers
3k views

Refactor Pro versus Visual Assist X for C++ Development

There are two major refactoring tools which can be installed for Visual Studio that provide C++ support. The full versions of both tools are $250, and they seem to offer similar functionality. They ...
8
votes
4answers
173 views

Tool to parse C++ source and move in-header inline methods to the .cpp source file?

The source code of our application is hundreds of thousands of line, thousands of files, and in places very old - the app was first written in 1995 or 1996. Over the past few years my team has ...
8
votes
5answers
789 views

Code refactoring

I am about to starting to work on a project which involves refactoring and modifying existing code which is in c & c++. The code is a bloated one and is in huge volume. Of course since the code ...
6
votes
2answers
111 views

Is there a tool for Scala to clean all the unused imports from all the code files?

I believe my source code files feature many imports that are not used in the code (as I have a bad habit of copying them from existing to new files). When coding C# in Visual Studio (or, maybe, it's a ...
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 ...
5
votes
6answers
235 views

What C++ refactorings do you use in practice?

I'm going to create the comparison table of existing automated C++ refactoring tools as well as explore an ability of creation of such tool, free and open-source. My question is: what refactorings do ...
4
votes
2answers
193 views

C++ Refactoring - Move method to implementation file

I have lots of header files with long method implementation inside. Is there An automatic way of doing that? One-by-one can take a lot of time... Thanks.
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
5answers
76 views

How to create an interface out of a class easily?

I have a class which has 10 methods. What i want is to create an interface of that class, i.e the interface will contain only the signature of those 10 methods. Can it be done easily in .NET using ...
3
votes
2answers
118 views

Is there a ReSharper-like code reformat and cleanup tool for Scala?

I'd like to automatically clean-up and reformat a Scala code file the way I can do with ReSharper in Visual Studio for C#. Can I do this with IntelliJ Idea or another tool?
3
votes
3answers
146 views

Help with automated renaming in C++

Here is my issue: I have a large library of code where all of the class names begin with Agui. For example: class AguiWidget { }; class AguiBitmap { }; also, all the hpp and cpp files are ...
3
votes
7answers
663 views

Programming Language Properties that facilitate refactoring?

What are common traits/properties of programming languages that facilitate (simplify) the development of widely automated source code analysis and re-engineering (transformation) tools? I am mostly ...
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 = ...
2
votes
1answer
523 views

Visual studio: automatically update C++ cpp/header file when the other is changed?

For example, if I change the signature in a function in either the header or the cpp, I'd like it to automatically change in the other one. If I add a new function in either, it should appear in both. ...
2
votes
1answer
635 views

Is the Eclipse CDT Refactoring Project Dead?

I've been over to the site lately and nothing much seems to work (aside from the main page)
2
votes
2answers
519 views

Tools for refactoring C# public fields into properties

I have a lot of C# code that uses public fields, and I would like to convert them to properties. I have Resharper, and it will do them one by one, but this will take forever. Does anyone know of an ...
2
votes
2answers
567 views

php code smell detector

Regarding the php code smell detector at http://c2.com/cgi/wiki?DetectingCodeSmellsInPhp When I open it in my web browser, I get an error, but when I open it in my IDE, I don't. How to correct it?
1
vote
1answer
45 views

Mass rename of classes solving references in Smalltalk with the Refactoring Browser

I want to rename all classes starting with the prefix SMP to RS, including references in source code (direct ones like SMPClass1 and indirect ones like Smalltalk at: #SMPClass2) and in class and ...
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?
1
vote
2answers
183 views

why doesn't eclipse-python have magic refactor?

Eclipse is able to utilize compiled bytecode to enable "magic refactor" functionality--renaming methods, tracing up and down class hierarchies and tracing through method calls. What technical ...
1
vote
0answers
327 views

PMD code smell detection and refactoring

(I develop using JAVA and want to implement plugin in eclipse which can detect code smell and automate refactoring) 1) Initialy, I would like to find a smell detector library in order to get the ...
0
votes
1answer
70 views

Any tools to refactor c structures under a superstructure?

Are there any tools which help manage plain old c structures? I have a number of structures that I would like to refactor under one big happy structure. That is, I currently have: typedef struct ...
0
votes
2answers
232 views

How to refactor this Ruby (controller) code?

This is the code in my reports controller, it just looks so bad, can anyone give me some suggestions on how to tidy it up? # app\controller\reports_controller.rb @report_lines = [] @sum_wp, ...