Tagged Questions

Open for extension: Behavior of a class, module can be extended to meet the need of new applications. This can be achieve by having abstractions and implement different behaviors when necessary. Close for modification: New behaviors are implemented separately, hence no one is allowed to make changes to the existing code.

learn more… | top users | synonyms

13
votes
5answers
2k views

Configuring Automapper in Bootstrapper violates Open-Closed Principle?

I am configuring Automapper in the Bootstrapper and I call the Bootstrap() in the Application_Start(), and I've been told that this is wrong because I have to modify my Bootstrapper class each time I ...
6
votes
4answers
296 views

Abstract methods and the Open-Closed principle

Suppose I have the following contrived code: abstract class Root { public abstract void PrintHierarchy(); } class Level1 : Root { override public void PrintHierarchy() { ...
6
votes
9answers
627 views

OO Design, open/closed principle question

I've been thinking about this object oriented design question for a while now and have unable to come up with a satisfactory solution, so thought I'd throw it open to the crowds here for some ...
5
votes
2answers
406 views

Understanding the Open Closed Principle

I was refactoring some old code of a simple script file parser when I came across the following code: StringReader reader = new StringReader(scriptTextToProcess); StringBuilder scope = new ...
5
votes
2answers
248 views

Using IoC and Dependency Injection, how do I wrap an existing implementation with a new layer of implementation without changing existing code so as not to violate the Open-Closed principle?

I'm trying to figure out how this would be done in practice, so as not to violate the Open Closed principle. Say I have a class called HttpFileDownloader that has one function that takes a url and ...
4
votes
3answers
97 views

How to apply open-closed principle when creating objects

I'm busy parsing xml documents (google docs api) and putting individual documents into objects. There are different types of documents (documents, spreadsheets, presentations). Most information about ...
4
votes
1answer
139 views

Are there any benefits to following the open/closed principle when using BDD?

The open/closed principle seems to be about preventing regressions in an object or method. Given that your code is covered by tests because you're practicing BDD this seems a redundant requirement. In ...
3
votes
2answers
51 views

What should I do when a standard is made private and only accessible for a fee?

I have some software which we added an open common file format (.iwb) to. The government organisation that initiated that work has been cut in the cutbacks. Now a not for profit organisation has ...
3
votes
2answers
134 views

Open / Closed Principle - How to deal with this Switch?

I have been looking into the open closed principle and it sounds good and so I wanted to exercise it's teachings. I looked at applying my new found knowledge to an existing project and have become a ...
2
votes
3answers
109 views

How to respect Open closed principle when you have business logic change?

We are doing some big changes in our system and I'd like to know the best way to implement these new business logic rules, respecting SOLID principles : Open / Closed principles says "Open for ...
2
votes
2answers
333 views

Does the Factory Method pattern violate the Open/Closed principle?

Does the Factory Method pattern (not to be confused with the Factory or Abstract Factory patterns) violate the Open/Closed principle? Update: To clarify, I'm referring to the scenario where a ...
1
vote
0answers
77 views

Using the MVP pattern and OO principles

I'm trying to apply the principles of object-oriented programming in a scenario that uses the MVP pattern. I got 4 solutions, and the last two I liked more. However most of the solutions break down ...
1
vote
1answer
54 views

WCF Derived types and violation of the Open/Closed principle

I have a base class that I use in WCF service calls, [KnownType(typeof(MyDerivedClass))] public abstract class MyBaseClass { //some properties } I derive from it and every time I derive I have ...
1
vote
1answer
78 views

What's the most appropriate way to apply the Open-Closed Principle in this app using C#?

Scenario Each night we perform a series of calculations on about a million customer contracts. Each contract is related to one fo a group of about ten products, each of which may employ variations on ...
0
votes
1answer
74 views

Is this the Open/Closed principle? And if not

Considering the following code public interface IEntity { int Id { get; set; } } public class User : IEntity { public int Id { get; set; } } public abstract class RepositoryBase<TEntity> ...
0
votes
2answers
76 views

Open/Closed for flexible software

The title may not be too descriptive, but I couldn't think of a better one. I'm sorry for that. So, the problem I am having here is one I have come across a couple of times now. It's really about ...
0
votes
3answers
725 views

Design Pattern - Abstract Factory pattern and Open Closed Principle

I am a beginner in design patterns. I am trying to use Abstract Factory - pattern while maintaining Open-Closed Principle. Plz look at the following code: public interface IAbstractFormFactory ...
-2
votes
8answers
206 views

If I have a full unit test suite for an application, must I still apply the Open/Closed Principle (OCP)?

The Wikipedia article on OCP says (emphasis mine): ... the open/closed principle states "software entities (classes, modules, functions, etc.) should be open for extension, but closed for ...