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

2
votes
1answer
26 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." ...
0
votes
0answers
25 views

Use JDEvAn and Code-Imp for code refactoring in java

I am assigned a project in code refactoring in java using tools JDEvAn and Code-Imp. The actual paper given for the task is "Automated refactoring using design differencing" by Moghadam/Cinnéide ...
3
votes
3answers
76 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 ...
1
vote
1answer
33 views

Move a method between classes using RubyMine

How do (can I?) I move a method from one class to another using RubyMine? I tried right-clicking on the method name, selecting Refactor, and Move ..., but that gives me Move file path/to/file.rb To ...
2
votes
0answers
105 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 ...
0
votes
0answers
16 views

How to use structural search to match literals?

How can I use IJ structural search to automatically refactor the following @myannotation(1) private CLASS_NAME variableName; into private @myannotation(1) CLASS_NAME variableName; I had tried ...
1
vote
0answers
78 views

Easiest way to move multiple methods from header “.h” file to implementaion “.cpp” file

I often start development of a C++ class by keeping everything in the .h header file. At some point, I want to move most methods from the header file into the implementation .cpp file. What is the ...
2
votes
1answer
55 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 ...
1
vote
1answer
83 views

Xcode: How to refactor/rename method and ADD (or REMOVE) its PARAMETERS?

Is Xcode (as of version 4.6) able to change method's signature? As far as I can tell no, but I'd like to be shown wrong. If I either try to add (or remove) a method's parameter, I am welcomed by the ...
1
vote
2answers
44 views

Refactoring public methods to another class

I have a C# win form which serves as the GUI for my application. In the form code I've written all the public methods which used by the form events. Now I need to refactor all those public methods to ...
1
vote
1answer
75 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 ...
1
vote
2answers
146 views

How to use Xcode Extract refactoring feature?

How do you use Xcode's Extract refactoring tool? Whatever code I select, I always get the same unhelpful error message. The selection does not contain anything that can be extracted. Make a ...
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 ...
1
vote
2answers
122 views

Renaming variables in JavaScript

I've been stuck with the unpleasant task of "unminifying" a minified JavaScript code file. Using JSBeautifier, the resulting file is about 6000 lines long. Ordinarily, the variable and parameter ...
1
vote
3answers
85 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 ...
0
votes
0answers
16 views

Creating custom CDT refactorings without using internal classes

I'm trying to write a custom C++ refactoring using Eclipse Indigo and CDT 8.0.2. The CDT provides a class, CRefactoring2, which obtains the AST and provides hooks. But this class is in an internal ...
4
votes
1answer
70 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 } ...
3
votes
1answer
143 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 = ...
0
votes
1answer
57 views

Netbeans with Java: set all methods to static

I'm working on a Java project on NetBeans. At some point, I have several variables and methods (say, about twenty) which are not static. I want to refactor all of them to be static. How can I proceed ...
0
votes
2answers
119 views

Intellij Idea How to add interface implementation to classes?

For example I have many classes than implement my interface. After adding new method definition in the interface, how can I fast-add blank interface implementations for all that classes?
8
votes
3answers
345 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 ...
1
vote
0answers
69 views

Batch rename of methods using IntelliJ IDEA

I have a class with many (approximately 40) methods with names in SCREAMING_CASE_LIKE_THIS. Is there a quick way, perhaps via the code analysis/inspections, to rename all of these to more idiomatic ...
0
votes
2answers
57 views

using resharper to extract a class and introduce a constructor dependency

Is it possible to use Resharper to refactor code such that the below method Eat is extracted into a seperate class, and the newly extracted class is injected in the Dinner class as an external ...
17
votes
5answers
249 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 ...
1
vote
2answers
77 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
49 views

Is there an easy way to replace a deprecated method call in Xcode?

So iOS 6 deprecates presentModalViewController:animated: and dismissModalViewControllerAnimated:, and it replaces them with presentViewController:animated:completion: and ...
1
vote
3answers
156 views

Automatically refactor C++ classes into separate files

I've inherited a fairly big project with tens-of-thousands of lines, but the previous developers packed them into 6 files only (OMG!)... So for the sake of readability I would like to automatically ...
0
votes
2answers
374 views

re-rendering a site within an iframe?

I want to make a site where there user can basically navigate the web from within an iframe. The catch is that I'd like to be able to have more control over what is rendered within the iframe. ...
10
votes
3answers
118 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 ...
2
votes
0answers
116 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 ...
1
vote
2answers
56 views

Tool to refactor all properties to have a backing field? [closed]

I have a very large project at hand - lots of classes and lots of properties (think thousands). When serializing auto properties for sending data over WCF there is an exception that's handled ...
2
votes
1answer
64 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
364 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 ...
1
vote
2answers
165 views

Any recommendation of scripts or tools to rename all variables and method names?

I was wondering if there is any tool or script for renaming all variables and method/function names in a piece of code (id specially be interested in one for java code, but recommendation for other ...
1
vote
1answer
68 views

How to use ARC converter for a single file in a ARC project?

The project is already an ARC project. But some files are manually disabled arc by putting a -fno-objc-arc flag in its compiler flags. Now I want use xcode's arc convert tool to convert some of the ...
0
votes
2answers
102 views

Customize StyleCop message for new file generation

Stylecop puts a copyright message when new file is created. Sample message is specified below // ----------------------------------------------------------------------- // // TODO: Update copyright ...
1
vote
1answer
515 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
86 views

How to rename a generated class during a maven build?

For a project I'm working on, I send queries to StackExchange and transform the JSON result into POJOs using jsonschema2pojo maven plugin. The problem is quite simple : that plugin always name the ...
1
vote
0answers
58 views

Extract c function with goto or break

On C project I currently work at there is much code that uses goto and break for error handling. Break and goto are usually found inside if (error_occured) { LOGGER_REPORT_ERROR(); goto ...
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 ...
3
votes
0answers
245 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 ...
1
vote
1answer
240 views

automatic refactor “switch” to “if-else cascade” [closed]

I have a huge .cpp file containing 10000+ lines of switch statements. Now I need them all automatically refactored to if -> else-if cascades because of the limitations of the switch statement in ...
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 ...
1
vote
1answer
74 views

What is the use case for type migration in Intellij Idea?

Okay so I have this variable declaration private List<String> params; and I wanted to change the type of params to : private Collection<String> params; I choose Refactor-->Type ...
1
vote
2answers
109 views

Why is Resharper telling me my string[] is never assigned?

On this declaration: string[] TardyEvenEmorys; ...Resharper tells me, "Field 'TardyEvenEmorys' is never assigned." Later on in the code, assignments are made to the string[]: TardyEvenEmorys[1] = ...
1
vote
2answers
122 views

Is this a mistake in/by Resharper?

I had this code: string[] args = Environment.GetCommandLineArgs(); bool grabNext; foreach (string arg in args) { if (arg == "-AA") { grabNext = true; } if (grabNext) { ...
2
votes
2answers
187 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 ...
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 ...
1
vote
1answer
101 views

Is there a tool that can refactor this C code correctly?

Lets say I have the following code (the array* function are what we use for resizable arrays and they operate on pointers-to-arrays that are null initialized): typedef struct MyStruct { int i; } ...
2
votes
0answers
114 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