Automated refactoring refers to the restructuring of source code (see refactoring) where a computer program does the structure modification, usually guided by user input. Many IDEs have automated refactoring capabilities that significantly reduce the possibility of error when restructuring code.

learn more… | top users | synonyms

17
votes
12answers
708 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 ...
17
votes
5answers
252 views

Auto generify non-generic interface implementation

I have interface public interface ObjectBuilder<E> { E buildObject(); } Also, the project has a lot of classes that implement non-generic version of the interface. class MyClassBuilder ...
16
votes
2answers
5k 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 ...
14
votes
1answer
308 views

R language aware code reformatting/refactoring tools?

Recently I've found myself working with R code that is all over the map in terms of coding style - multiple authors and individual authors who aren't rigorous about sticking to a single structure. ...
10
votes
6answers
2k 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 ...
10
votes
4answers
706 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 ...
10
votes
3answers
131 views

How can I implement my own type of extern?

In our product, we have things called "services" which are the basic means of communication between different parts of the product (and especially between languages—an in-house language, C, Python and ...
9
votes
4answers
2k 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 ...
8
votes
3answers
378 views

Resharper find pattern and replace - how to insert strings

We have a sanity check method void IsNotNull<T>(T obj){...} invocation IsNotNull(obj); I want to replace this to invoke the other overload that takes a second param of type string ...
8
votes
3answers
1k views

Automatic regenerate designer files

Recently I've been making some improvements to a lot of the controls we use, for example give properties default values and making buttons private instead of protected. By making this kind of ...
7
votes
10answers
4k views

Automatically deleting unused local variables from C source code

I want to delete unused local variables from C file. Example: int fun(int a , int b) { int c,sum=0; sum=a + b; return sum; } Here the unused variable is 'c'. I will externally have a list ...
7
votes
4answers
2k 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 ...
6
votes
6answers
1k views

Refactoring to move a private field from one class to its helper class?

EDIT : I submitted an Eclipse enhancement request for this refactoring. Is there a way to move a private field from one class to its helper class? The below chicken-scratch UML shows what I'm doing ...
6
votes
2answers
410 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 ...
5
votes
2answers
228 views

C++ refactoring: conditional expansion and block elimination

I'm in the process of refactoring a very large amount of code, mostly C++, to remove a number of temporary configuration checks which have become permanantly set to given values. So for example, I ...
5
votes
6answers
309 views

What C++ refactorings do you use in practice? [closed]

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
237 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?
4
votes
5answers
156 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 ...
4
votes
2answers
465 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 ...
4
votes
1answer
73 views

Why does Resharper think that these enums are never used?

I have these enums: private enum FontSizeType { XSmall, //9 Small, //12 Medium, //18 Large, //24 XLarge, //36 XXLarge //47 } ...
4
votes
2answers
381 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
3answers
631 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 ...
4
votes
1answer
799 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)
4
votes
2answers
298 views

Refactoring/Restructuring tool for Java

I have a large monolithic webapplication that I whish to break apart into smaller modules. As a first step I'd like to change the package hierarchy which currently looks like: - ...
3
votes
7answers
826 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 ...
3
votes
2answers
872 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?
3
votes
2answers
236 views

Suspicious warning from Resharper - should I change my code?

With the following code: if (lombardiTrophy.Substring(1, 1).Equals('~')) ...I get, "Suspicious comparison: there is no type in the solution which is inherited from both 'string' and 'char'" Is ...
3
votes
2answers
854 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 ...
3
votes
1answer
33 views

Why can't Eclipse push down static fields?

When I try to use an Eclipse automated push down refactoring on a static field, I get the error: "To activate this refactoring, please select the name of a non-binary instance method or field." ...
3
votes
3answers
448 views

automatically split (refactor) .h into header and implementation (h+cpp)

When writing c++ code, I often start by writing full 'implementation' code in my header files, then later need to refactor the implementation into a cpp file. This is great, but I find this process ...
3
votes
1answer
910 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. ...
3
votes
3answers
84 views

Complex refactoring

Are there any good Java refactoring tools that could handle large-scale refactoring projects such as the one below. Obviously I would prefer free if possible. I am working with a legacy project, most ...
3
votes
1answer
153 views

Automatically simplifying/refactoring Python code (e.g. for loops -> list comprehension)?

In Python, I really enjoy how concise an implementation can be when using list comprehension. I love to do concise list comprehensions this: myList = [1, 5, 11, 20, 30, 35] #input data bigNumbers = ...
3
votes
0answers
251 views

Is Scala too complex for any IDE to support refactoring equivalent to refactoring support for Java / C#? [closed]

The feature list of Scala IDE on typesafe.com touts basic refactoring support like rename, extract method, etc. However I found the support to be quite abysmal. It breaks down quite easily and I find ...
3
votes
1answer
236 views

Eclipse - record and apply move and rename refactorings to another workspace

I'm currently working in a big java project with quite a few submodules that are worked on by different teams. Some of these teams are building the "framework", others are building the "application" ...
3
votes
1answer
289 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
2answers
602 views

Is there a way to find all unused code in a .NET project using ReSharper?

I've just done a major, major overhaul on a colleagues project and throughout the process almost everything got rewritten. There was far too much code beforehand. Now, I am left with the prospect ...
2
votes
1answer
332 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
85 views

Are there any tools that can help us refactor IEnumerator properties to IList<T> or similar?

We have a very old code base(that actually is not horrible quality). It dates back to when .Net was pre-release, which I suspect is the cause of some of these weird conventions. Anyway, we just ...
2
votes
4answers
189 views

XHTML 1.0 Transitive, is there a tool that can refactor HTML?

I have a Asp.net web application running with the following config setting. <xhtmlConformance mode="Legacy"/> This limits use of AJAX and compatibility with multiple browser. If my ...
2
votes
1answer
278 views

Refactoring in MATLAB

I got the fruitless task to incorporate some programs my predecessor wrote. One horrible mess of unorganized code. So far I know only about the automatic identation (C-i). So I wonder if you can ...
2
votes
1answer
254 views

Need tools which will refactor the C# code for null checks

Can anyone suggest me for automating the null check refactoring in C# code? The actual problem is, I have a C# console application with 500 files where in each file contains so main IF-ELSE ...
2
votes
1answer
59 views

Eclipse : transform static method invocation to a static import

Is there a way to transform automatically this static method invocation (Arrays.asList): import java.util.Arrays; import java.util.List; public class StaticImport { public static void ...
2
votes
1answer
69 views

Comment Line Dissapears After Rewriting a Node

I was writing simple refactoring and noticed a strange thing. The comment line before the node I am rewriting disappears after refactoring. Also comments after the node in question are transferred ...
2
votes
2answers
408 views

Is there an easy way to Extract Interface in Visual Studio Express 2010 Edition?

I have a large class from which I want to extract interface. I only found "Extract Method" under Refactor Option, so I am wondering if there is any free tool available that does that, so I do not ...
2
votes
3answers
58 views

Automatically refactor code to avoid parameterless constructor

I have a class that has a parameterless constructor that I want to remove (or make private) class C { string A { get; set; } int B { get; set; } public C() { } //Problem public C(A ...
2
votes
1answer
110 views

Can Not Refactor Class Name in XCode

I am trying to rename the class name for a view controller (which has an associated .xib file) via XCode's refactoring tool. After entering a new name, I get this error message (no preview of ...
2
votes
0answers
134 views

Eclipse Android Package Refactoring Fails - Internal Error

I am trying to use the Android Tools > Rename Application Package option in Eclipse to test my changes to FBReaderJ on my tablet while keeping the official version available. When I use this command ...
2
votes
0answers
121 views

XCode: “Refactoring to new Objective-C syntax” and round brackets

I'm wondering why XCode refactors this [self.aDictionary objectForKey:@"aKey"] to this (self.aDictionary)[@"aKey"] and not simply self.aDictionary[@"aKey"] That should work fine, too, or is ...
2
votes
0answers
119 views

tools to help minimize usage of macros in C++ programs

Different C++ style guides deprecate the use of C Preprocessor macros. I know there are tools which help detect errors due to macro usage (CPPCHECKER, Check), and tools which provide refactoring in ...

1 2 3