Refactoring is a disciplined technique for restructuring an existing body of code, altering its internal structure without changing its external behavior.

learn more… | top users | synonyms (1)

0
votes
1answer
9 views

Can't add packages into /app/models in playframework2.1

Is it possible to modularize the app/models folder adding packages into it in play2.1 framework (java)? Actually I have to put all of my classes (models) into app/models folder, otherwise play! ...
0
votes
2answers
32 views

Is there a way to refactor this javascript into two event handlers

$('.main').on('mouseleave', '.left_inner_element', function(event){ $('.left_inner_element').removeClass('inner_hover'); }); $('.main').on('mouseover', '.right_element', function(event){ ...
0
votes
0answers
6 views

NetBeans renaming a class only modifies the renamed file

Using NetBeans 7.0.1, if I use refactoring to change the name of class Foo to Bar, then it will rename Foo.java to Bar.java, replace Foo with Bar in Bar.java, and even tell my git repository that the ...
2
votes
3answers
55 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 ...
0
votes
0answers
41 views

Triggering 'extract method' in Eclipse Refactoring/LTK API

I am currently developing an Eclipse Plug-In that will let me trigger refactorings, using gestures. I've been trying to trigger 'extract method' programmatically in Eclipse for a while now but I am ...
1
vote
0answers
11 views

pointer with releation code refactor

Recently, I am about to starting to work on a project which involves refactoring and modifying existing code in c++. My Project caches lots of objects which have Parent-child relationship between ...
0
votes
0answers
13 views

Refactoring existing code base

I have a code base which has the following structure: Lib layer class Actions { int Id; string Name; //... other properties public static GetActionById(int Id) { //DB query } } ...
0
votes
2answers
21 views

Organize import in Eclipse

Making my first WSDL project from scratch, I've faced some discomfort using Eclipse. After generating Java beans skeleton, Eclipse placed paths to Java classes in generated files: package ...
0
votes
1answer
32 views

Re-factoring the usage of same switch-case multiple time

In a class I have following switch-case: switch(articleStep.getDeveloper()) { case CENTRAL: switch(articleStep.getArticleType()) { case POSM: //some code ...
3
votes
2answers
125 views

generate a list of C++ symbols for mass refactoring/renaming

Background I have inherited a legacy 60kloc g++ project which I would like to refactor to enforce a consistent naming convention throughout the project. Question Is there a free/open-source ...
0
votes
0answers
32 views

Incremental Refactoring Toward Null Object: C++ overloading

We've got a large legacy C++/ObjC++ application that could benefit from Null Object to replace thousands of redundant checks: Thing *thing=CurrentSelection(); if (thing) thing->Drill() If, when ...
0
votes
1answer
25 views

Rails - moving code from view to controller

This is a sort of a "best practice" question but even if its not a good practice, I'd still like to know the implications of doing this type of coding - in terms of usability, scalability according ...
0
votes
1answer
19 views

eclipse add objects to class, automatically and retroactively

I changed the location of a object classes that my class in question relies on. Now many references to other objects are broken Is there an automated way for it to add those classes back without my ...
0
votes
1answer
16 views

JSF-pages are not affected by Eclipse's refactoring function

When I do refactoring in my backing beans, the xhmtl-files are not affected and JSF's EL-expression point into nowhere.
0
votes
2answers
48 views

Refactor code that repeats

I've got this class: #include <string> #include <vector> class QueryStatistics { private: std::vector < std::pair <std::string,int >> queries_title; ...
1
vote
1answer
36 views

Refactoring monsterous JavaScript-project

I've found myself from the monstrous JavaScript-project. I haven't seen any references to known design patterns and code files consists of 5000+ rows of messy code. Usual length of the function is ...
0
votes
0answers
10 views

Microsoft IDL (MIDL) refactoring tool

I'm looking for a tool that can refactor MIDL files (interfaces/coclasses/enums renaming, alphabetical sorting etc). Have anybody met such tool?
0
votes
1answer
18 views

I need a way to remove “dead pages” from an ASP.NET 2.0-4.0 site

I've taken over about 30 projects at a company. Through the years the guy who ran things worked directly on the server. There's tons of dead pages that cause Visual Studio to break. I have JetBrains ...
0
votes
0answers
30 views

Best Practice with object creation and data access

I've got a TabContainer control which houses several tabs. Depending on the ActiveIndex property of the TabContainer I would like for a button click to create a Gridview in that tab and bind it to a ...
0
votes
1answer
32 views

Method scope only inside another method

I have a Long Method with lots of Duplicated Code. In order to fix this Code Smell, I'd like to use Extract Method. However, the extracted methods are only useful within the scope of the ...
0
votes
1answer
10 views

How to organize redirects which depends commit value

Consider a blog application, with a form to create new posts. There are two buttons, "Save", "Save and continue editing", which would redirect the user accordingly after save. This is the code: def ...
0
votes
2answers
31 views

Rails controller refactoring

I have code similar to follwoing ... @c = M.find(params[:id]).c.find(params[:c_id]) if @c.s.count > 0 @s = @c.s.sort_by{|e| e[:order]}.first unless @s.p.nil? @img = ...
3
votes
3answers
44 views

How to handle complexity in jsps

This may be more of a rant than a question that can actually be answered. I'm not sure yet. I suspect it may be a situation that lots of people encounter though so hopefully it's a useful question. ...
0
votes
1answer
23 views

Refactoring variables and function names in MATLAB?

In eclipse you can refactor all variables and function names by hitting CTRL+SHIFT+R which is great. I am editing someone else's matlab script and would like to change a lot of their varaibles and I ...
-1
votes
3answers
40 views

How can I create a subclass of an abstract class automatically in Eclipse in Java?

say I had an abstract java class in eclipse. Now I want to create some subclasses of that abstract class. Is there a way to create them automatically where I just enter the name of the class and ...
0
votes
1answer
37 views

Best way to refactor complex dashboard

TL;DR I need a way to refactor a complex user dashboard with several objects and some complex data to display a accounting chart. My model and controller are pretty messy, so if anyone have some ...
0
votes
0answers
17 views

refactor PHP legacy code to REST API

I have a big PHP legacy codebase and I was planning to move it to a MVC based pattern. Not because I want, but if I could separate the views, It would be easier to give the views/layouts with a mockup ...
1
vote
1answer
56 views

How to Fix Weird C++ Codes that Assume the Relative Ordering of Class Members

I need to modify the ordering of my C++ class members. For example: class B { public: int i; int j; int k; ... }; becomes class B { public: int j; int k; int i; ... }; The problem is there are ...
1
vote
1answer
31 views

How to rename a file in IntelliJ without finding usages?

I am developing a Node.js project in IntelliJ. The only way to rename files seems to be Shift+F6 which attempts to find all usages which takes too long (~30s - 1min). Is there a way to simply rename ...
0
votes
0answers
29 views

Out of the controller and into what file?

Where should set_meta_tags be refactored to? Should I make it a helper method? def show @post = Post.find(params[:id]) set_meta_tags site: 'Baskets', title: "Fruit", ...
0
votes
1answer
24 views

Is database refactoring impossible in Entity Framework 5 Migrations?

Say I have an entity class A that uses a surrogate key for its PK and defines a uniqueness constraint that involves an FK into a different entity class B. All is well and good. However, somewhere down ...
1
vote
1answer
51 views

Linq to sql query: how to prevent duplication of code

My problem I'm very new to Linq and I have to difficulties using it. I have written functional queries but I was forced to duplicate some code in every single query. The first part for the queries ...
0
votes
2answers
41 views

Neat ruby way of returning failure or continuing after function call

I often have code of the following nature ret = function_call( arguments ) return -1 if ret == -1 ret = another_function_call( arguments2 ) return -1 if ret == -1 ... pattern repeated several ...
0
votes
2answers
40 views

How to refactor a linq query to reuse its parts

I have been trying to refactor this query for a while without any luck: db.Kiosks.Where(kiosk => db.KioskDesignations.Where( q => q.Kiosk.KioskId == ...
1
vote
1answer
58 views

Scala: Refactoring a case-statement to use for-comprehension

I'm trying to parse the following Json into a Scala object: { "oneOf": [ { "$ref": "..." }, { "$ref": "..." }, { "$ref": "..." } } The field "oneOf" could also be "anyOf" or ...
-1
votes
0answers
25 views

Refactoring In Python [migrated]

I am trying to learn some re factoring techniques on my own and wanted a few exmaples. I am given the following code: import csv from xml.etree.ElementTree import Element, SubElement, Comment, ...
2
votes
2answers
45 views

Integrating Leaflet and Bootstrap: help refactoring my css

I'm trying to use Bootstrap to structure a page containing a leaflet map. Here is how it looks like: I've been unable to do it with bootstrap. I wrote some ugly css which barely works: HTML ...
1
vote
1answer
44 views

If a nodejs module exports an object to two other modules, do changes made to that object in one downstream module propagate to the other?

I originally had a working application in nodejs which had all of its code in one file, split out into discrete chunks using constructors and IIFEs. In order to provide sensible decoupling and ...
1
vote
3answers
23 views

cleanup unused code in a large php project

Is there any monitoring, analysis tools that would facilitate the cleaning up of dead files , variables , functions and refactoring of a large , relatively messy php project/framework?
12
votes
4answers
267 views

Architecture: Modifying the model in different ways

Problem statement I have a model class that looks something like (extremely simplified; some members and many, many methods omitted for clarity): class MyModelItem { public: enum ItemState { ...
0
votes
1answer
21 views

Prevent eclipse from renaming multiple files

I am using eclipse for a project that has multiple XML files in separate folders. For example: Folder A 1.xml 2.xml 3.xml Folder A_Large 1_large.xml 2_large.xml 3.xml If I ...
1
vote
3answers
34 views

Array.shift() and modify value in a single line?

This Javascript code removes the first file name from a file list and then removes its extension: var fileNoExt = filelist.shift(); fileNoExt = fileNoExt.substr(0, fileNoExt.lastIndexOf('.')); I'm ...
2
votes
2answers
28 views

Refactor recursive modifications of tree

How can I refactor the following code: class ModifyTree{ public void doActionsOnTree(Tree tree) { rAction1(tree.getRoot()); rAction2(tree.getRoot()); } private void ...
0
votes
4answers
60 views

Refactoring with the ternary operator in C

I've made a function that checks the bounds of an array. Why isn't my second solution performing the same task as my first solution? Is this a matter of precedence, or improper usage of the ternary? ...
3
votes
1answer
32 views

Anyway to speed up renaming controls in Visual studio 2010?

I am working in visual studio 2010 on many projects, all projects are similar, and are modified from 1 project which was used as a template, but when I was trying to rename the controls to a new name ...
0
votes
1answer
20 views

update a model from another controller without passing an id?

Im trying to update my profile model true a welcome_controller. The reason for this is that I have some steps as a welcome wizzard were the user builds his initial profile. I cannot get the routing ...
0
votes
0answers
19 views

Common JAR file with models - POJO+MongoDB support

I have 2 projects that require the same business logic. One project is supported by mongodb backend (with spring), and the other - does not. I want to create a core JAR file that contains the POJO ...
0
votes
1answer
19 views

move or refactor all open editor tabs (the corresponding files)

I need to change the package for a number of classes and interfaces that live in a number of different directories. It is easy to open the files as tabs (as they are dependent on each other), but I ...
0
votes
1answer
20 views

How to refactor select subqueries into joins?

I have an extremely ugly complex query that returns results for a race based on a series of groupings. I have a table that contains registration information (name, etc), and a table that contains ...
2
votes
1answer
18 views

best way to refactor hardcoded links in rails update methods?

Having some "complex" routing, what would be a good way to clean below hardcoded links up and make them named routes? I have these kind of constructions on several locations and want to get them out ...

1 2 3 4 5 68