Tagged Questions

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
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 ...
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 ...
7
votes
3answers
442 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 ...
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 ...
6
votes
11answers
3k 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 ...
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
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 ...
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
103 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
2answers
94 views

Visual Studio-like refactor tool for SQL

Are there any free tools providing snippets and syntax checking similar to Refactor in Visual Studio 2003/05/08/10? @edit: To MSSQL, any version..
2
votes
4answers
128 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
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
23 views

Keep Test classes in sync with Source classes

In Eclipse, I have two source folders, one called src the other called test. They have the exact same package structure and each src Class has a test equivalent with "Test" appended to its name. ...
1
vote
2answers
38 views

looking for a CLI program to do text transformation on Objective-C code

I'm trying to find a command line program to do code / text transformations on Objective-C code. E.g.: all method calls of type [obj call:aMethod with:params]; should be transformed to [obj re:params ...
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
2answers
143 views

Auto refactoring to string.Format

I have a c# project in VS2008 that have a lot of lines of code that look like this: string s = "bla blab" + x + "bla bla bla" + y + .... ; and I would like to covert those strings to a single ...
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
195 views

WCF client proxy class renaming problem

Perhaps others have encountered the same problem. It seems the default class name for a WCF client proxy is Service1Client. When I delete the service reference and recreate it the name keeps coming ...
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 ...
1
vote
1answer
276 views

Visual Assist X: curly braces are moving during refactoring

I use Visual Assist X, build from 05.01.2009, but the same problem occurred in the previous releases as well. (I run it on MSVS 2005) When I do some refactoring (like extracting a method), ...
1
vote
2answers
282 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 ...
0
votes
0answers
14 views

Can I Undo Netbeans Refactoring (Rename Variable) Function?

So I wasn't paying careful attention when using the the Refactor->Rename function in Netbeans a few times this morning and now I'm afraid Netbeans may have automatically changed the names of some ...
0
votes
0answers
5 views

How to automate renaming files to match class name in Visual Studio 2010

I have several projects whose file names do not match the class names. Is there a way automate a renaming of these files to match the class names in Visual Studio 2010? Thanks in advance!
0
votes
1answer
31 views

Automated evaluation of SOLID principles enforcement

Are there tools that can automatically evaluate the degree to which SOLID principles of OO design are respected in a project?
0
votes
2answers
55 views

Visual Studio: Automated reference cleaning?

Is there any way of finding out what assemblies that's not used in a solution and have them removed automatically? (Just like when removing unneeded using-statements.) Side note: Wouldnt it be nice ...
0
votes
2answers
73 views

Is there way for extracting string resources in Android project in IntelliJ IDE?

When I'm working on Android project I would like to use some magic shortcut that would extract my string to strings.xml and also allow me to change the key. Is there any? If there isn't, is there a ...
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
1answer
75 views

How to refactor <link href=“ ” /> references in ASP.NET pages/views using ReSharper?

I moved a set of ASPX pages to a different folder using ReSharper's Refactor->Move command. From ReSharper we have: Move to Folder This refactoring helps move a class, a file, or a selection ...
0
votes
0answers
48 views

Can I use Bicycle Repair Man in Eclipse to rename a method or class across all files in a project?

I've just started to get familiar with Bicycle Repair Man through PyDev and while limited, it's nice. The 'rename' item doesn't appear to provide anything more than a search & replace, and unlike ...
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 ...
0
votes
2answers
53 views

Does anyone have a tool which can automatically attempt to refactor javascript to a more prototype/oo style?

It looks to me like it might be possible to, in many cases, automatically perform some of the refactoring required to turn a functional and/or class style javascript source into a more ...
0
votes
3answers
642 views

Is there an application that can convert PHP code to ASP.Net?

I'm tired. I have ~30 really messy PHP files in my project. Hearing people say that Asp.net is more structured , that it is better (I'm mostly relying on Jeff's advice @codinghorror here) and that it ...
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, ...