1
vote
3answers
60 views

How to properly structure functions?

let's say we have a class with some methods in it, of which at least one is of rather complex nature: class Example { public function Example() { } private function ...
0
votes
1answer
40 views

Refactoring and dependencies issue

I've got a number of SMS providers, each in a separate directory in the file system. The main class inside each provider directory extends abstract class ProviderAbstract.php which is located ...
1
vote
1answer
53 views

2 Product lines sharing same code

We are working on two product lines that will share the same code. For functionality that differs, I have both product lines implement the same interface (or base classes in some case) and these ...
1
vote
2answers
61 views

Refactoring options for a Java visitor

I have a class that defines a transformation from an AST (Abstract Syntax Tree) to an Intermediate Representation (IR) based on the visitor pattern. Both models are EMF models, so the visitor extends ...
1
vote
1answer
34 views

refactor legacy code, extracting small interface from a giant one with a small implementation

I have a large piece of code (legacy) which knows to connect to an external service lets say connects to skype and bring its availability, the way its doing this (this is how it works its for the sake ...
1
vote
2answers
111 views

How to refactor “stringly-typed” code?

I'm currently working on a codebase where there are a few classes of variable, like database paths, which are simply represented as Strings. Most of the operations on these (non-)types are defined in ...
0
votes
2answers
48 views

How can I refactor this code and apply OO patterns?

I have four RichTable instances in my class and there is a notion of current table instance . Depending on a flag resetAll I need to clear out selections of either all the tables or all tables except ...
3
votes
1answer
74 views

Should I use public setter to set private attribute value inside class?

Lets assume I have a class Test, which has got a private attribute called $_list, and a public setter. Public setter is used to set the attribute value from the outside. class Test { private ...
0
votes
2answers
252 views

Validating and parsing url parameters in ASP.NET

I'm maintaining a legacy WebForms application and one of the pages just serves GET requests and works with many query string parameters. This work is done in the code-behind and does a lot of this ...
2
votes
3answers
79 views

Will you create a private class member to eliminate multi-level function call?

Although I wrote this example in C++, this code refactoring question also applies to any language that endorses OO, such as Java. Basically I have a class A class A { public: void f1(); void ...
3
votes
2answers
129 views

What is the best way to arrange this classes? [closed]

I'm doing a simple project to manage data for a tabletop game, but I'm mostly using it to get experience about correct coding. I've just reached a point where I have five classes that are tightly ...
1
vote
1answer
119 views

Objective-C: Refactoring code - how do I get a pointer to a view instance?

I am not very experienced with OOP so I wanted to share what I am currently doing and ask for some advice about how I should go about a couple of things. I am currently working on a simple game that ...
7
votes
1answer
173 views

C++ Help on refactoring a monster class

I have a C background and am a newb on C++. I have a basic design question. I have a class (I'll call it "chef" b/c the problem I have seems very analogous to this, both in terms of complexity and ...
5
votes
6answers
148 views

What is the proper design to deal with this?

I'm working on a legacy Java application, that deals with "fruits" and "vegetables", let's say, for the sake of the question. They are treated as different things internally, cause they don't have all ...
4
votes
1answer
111 views

Framework to structure existing JS code

I have some procedural javascript code that I have written for an open-source application and I'd Like to refactor it into OOP and since I have very little experience with javascript frameworks I have ...
5
votes
7answers
301 views

How to avoid duplicate interface code?

Since interfaces cannot contain implementation, that seems to me to lead to code duplication in the classes that inherit from the interface. In the example below, pretend that, let's say, the first ...
3
votes
2answers
2k views

A messy view layer, should I depart from MVC?

I'm moving the question here from IRC. The problem: I have jumped in into a code base that I want to take on good shape. Don't we always? In that spirit, after adding some coverage (as in test ...
2
votes
1answer
69 views

Yet another “Is this a pattern and if yes, what's the name”?

Create an instance from another one of different kind/class. Quick example: you are using an ORM and you store an email queue in your database. Then at some point you have to send bulk emails, ...
3
votes
1answer
64 views

Is deriving a class just for identification of the type a good idea?

Question is longer than normal, but I have tried to elaborate. Please bear with me and read the entire question, it might be an interesting problem I have a method A currently that accepts an object ...
-1
votes
1answer
131 views

C++ Refactoring basic semantic into Objective classes

I have this simple program that computes salaries for four different worker types. It's written semantically but I want to refactor it so I can have each worker type be it's own class. The main ...
2
votes
1answer
80 views

Refactoring: Finding a Common Abstraction

I've got this piece of legacy code which I'm trying to refactor at the moment: public class FileManger { private IFileReader _fileReader; private IFileWriter _fileWriter; ...
10
votes
2answers
203 views

Is there any tool or add-in for Delphi that I can use to help refactor code that is Not Object Oriented?

I have a large codebase which I am working with which has units like this: unit myformunit; interface type TMyForm = class(Form) end; procedure not_a_method1; procedure not_a_method2; ...
1
vote
4answers
102 views

Method which does nothing or throw Exception [closed]

I have a big method, part of which checks the state of an object and throws an exception if the state is invalid. Should I extract a method? The new method 'CheckState' will do nothing or throw an ...
1
vote
2answers
138 views

How to handle initialization of variables under specified circumstances

I have a class whose constructor looks something like below: abstract class BasePanel extends JPanel { public BasePanel(A a) { // initializing fields from values passed to ctor this.a = a; ...
0
votes
1answer
139 views

design pattern: refactor the code like these

I plan to to refactor my code below 1.Class A_Builder to build A_Model Class A_Builder{ public A_Model build(arg1){ //build A_Model } } 2.Class B_Builder to build B_Model Class B_Builder{ public ...
3
votes
3answers
304 views

Refactoring a static class to separate its interface from implementation

I am working on a .NET based application, where some of the core application classes were designed with only static methods. Example usage: // static access. Parameters.GetValue("DefaultTimeout"); ...
1
vote
1answer
142 views

Preserve Whole Object VS Don't Look For Things

I was reading Fowler's Refactoring Book and saw Preserve Whole Object. A different, newer opinion says that this refactoring is the exact opposite of what you should do: The Clean Code Talks - Don't ...
1
vote
1answer
56 views

How do I refactor a class with lots of operations which all require its internal data?

My Problem I have a class with just a few fields but which represents a relatively complicated data structure. This class is central in my program and over time I found myself adding more and more ...
9
votes
5answers
480 views

Avoiding use of 'instanceof'

I'm struggling with how I might avoid using instanceof() in some of my code. This contrived example somewhat captures the problem. Class Meat extends Food; Class Plant extends Food; Class Animal; ...
0
votes
1answer
144 views

What anti/pattern involves repeatedly passing around the same parameters?

So let's say I have some code... House = function () { /* constructor */ } House.childPlay (childId) { ... } House.childLearn (childId) { ... } House.childEat (childId) { ... } So, implicitly, ...
0
votes
0answers
51 views

Tools to suggest improved OO and design pattern approaches? [closed]

I'm working on a PHP OO application and I am wondering whether the inheritance I've implemented is optimal (specifically, I'm wondering if I've enough of it). It occurs to me that there may be lexical ...
2
votes
2answers
263 views

instanceof considered harmful?

I am looking over some code that has heavy use of Java's instanceof operator. I will fight the temptation to go into details, since this is a general question. instanceof reminds me of of c++'s ...
4
votes
3answers
127 views

Refactoring Dilemma: User Account Functionality in PHP

I'm writing a user account system in PHP, with an emphasis on security, but I'm stuck on refactoring it into something cleaner and more usable. The problem is trying to group the user account ...
-3
votes
3answers
519 views

Must Read Books on Java? [closed]

Just wanted to know if anyone has a reading list of the books that all java programmers must read for both refactoring and Design of applications? Any inputs on the same would be of real help. TIA
0
votes
1answer
128 views

refactoring of the java code [closed]

I have a code which was not refactored at all. I refactored it to some extent..but stuck at a point where I cannot think of anything further. Tractor.java: package com.farm; public class Tractor ...
1
vote
2answers
130 views

Refactoring Switching On Types Code Smell When Adding Method to Type Seems Inappropriate

Let's say I have the following method that, given a PaymentType, sends an appropriate payment request to each facility from which the payment needs to be withdrawn: public void ...
7
votes
4answers
408 views

Refactoring Plan for 17+ years of un-testable Delphi Code

You've all heard it before, classic Delphi application. With 3rd party libraries we're at 1.5 million lines of code, probably 200,000 of our own (Dev Express, NexusDB, etc etc) One huge Datamodule ...
1
vote
4answers
106 views

Python: How to handle method calls on a class that could not initialize correctly?

If an object relies on a module that is not included with Python (like win32api, gstreamer, gui toolkits, etc.), and a class/function/method from that module may fail, what should the object do? ...
5
votes
5answers
230 views

My models all tend to look the same

I've noticed that all my models look very similar. Most of them tend to follow a pattern where they are collections of methods containing active record code that are just slight variations on one ...
1
vote
1answer
103 views

How could I refactor this part of my windows phone app

Im not very familiar with refactoring but I feel like I need to do some changes in this code... I have 4 buttons in my app. Each one calls an method that receives data from an online xml and use ...
0
votes
5answers
127 views

Why Should I Re-Factor my Code? [closed]

If I've written a piece of code which is maybe a bit simplistic but I understand how every little bit works and if something goes wrong I can easily identify and correct the problem, why should I use ...
69
votes
12answers
3k views

Is it OK to have a class with just properties for refactoring purposes?

I have a method that takes 30 parameters. I took the parameters and put them into one class, so that I could just pass one parameter (the class) into the method. Is it perfectly fine in the case of ...
2
votes
1answer
102 views

State pattern, but controlled from 2 different places

I have a class that controls what the user sees on the page. There are a couple of states. The first set of views are controlled by the user object and that object controls the items below. - ...
3
votes
2answers
110 views

Best way/pattern to build request based on different service

I have a about 20 different services which I have to send requests to which require a slightly different set of headers. The bad legacy code is something like this, row = db.query_for_service() ...
6
votes
2answers
244 views

Trying to shy away from a singleton/god/manager class. Not sure how I am supposed to sustain functionality, though

I have a class which has been steadily growing over time. It's called LayoutManager. It started as a way for me to keep track of which dynamically created controls were on my page. So, for instance, ...
0
votes
4answers
67 views

code in the middle is different, everything else the same

I often have a situation where I need to do: function a1() { a = getA; b = getB; b.doStuff(); .... // do some things b.send() return a - b; } function a2() { a = getA; b = getB; ...
6
votes
1answer
191 views

When to split an MVC view into two?

I discussed best practices in MVC the other day with a colleague and he asked me how to best separate views. He was maintaining an MVC solution which had a common input form with a controller with two ...
1
vote
2answers
61 views

Method and Constructor<?> both inherit from Member, both having a getExceptionTypes() method. How to avoid code duplication in this scenario?

I have both these methods in my code base, which I'd like to merge in some way to avoid code duplication: protected IJavaType[] getExceptionTypes(Method method) { Class<?>[] ...
3
votes
4answers
406 views

Confusion with multiple interface implementation

I have the following set of Interfaces and Classes. public interface IValidatableObject { List<string> ValidationErrors { get; } bool Validate(); } public class ValidatableObject : ...
0
votes
1answer
249 views

Convert PHP procedural code into OOP method chaining…are maintainability and readability worth the trouble?

I had a medium-size task done in procedural style so I thought of converting the code to OOP for ease of maintenance. The original code was a big block in a single file and what I did was: - Break ...

1 2 3