0
votes
1answer
62 views
Enforcing DLL Dependencies
Background
My solution consists of two projects:
A standard Windows application
A DLL which my application does not use directly, but instead injects it into a target process
…
1
vote
3answers
28 views
Should a service be given a reference to another, or should the caller gain extra responsibility?
There are two classes in my project (using ASP.NET MVC): AuthenticationService, and ProfileService.
When a new user registers at my site the Authentication controller's Register ac …
0
votes
2answers
54 views
Does GRASP Creator really decouples?
I'm learning GRASP pattern at school and I have a question about the Creator pattern.
Let's say you have three class, Computer, UserRespository and User.
One of the rules of the …
5
votes
5answers
284 views
Alternatives to “using” keyword in C#?
I just finished watching an episode of Bob Martin at NDC where he said "using" directives in C# at the top of a page are bad because of the tight coupling they create/imply between …
2
votes
4answers
172 views
Removing tightly coupled code.
Forgive me if this is a dupe but I couldn't find anything that hit this exact question.
I'm working with a legacy application that is very tightly coupled. We are pulling out som …
0
votes
2answers
108 views
Why are Mediators coupled to Proxies in Flex PureMVC?
I've just recently learned the PureMVC framework, and am a little confused as to the coupling between Proxy and Mediator objects. The links on this page connect to some documents …
2
votes
2answers
63 views
Does the concept of coupling two different items of data by storing them in a single variable have a name?
For example, if I have a 64-bit variable and store two 32-bit items of data in it, perhaps for the purposes of SIMD processing, is there a name to describe the logical coupling of …
1
vote
3answers
85 views
How to test anonymous classes?
I believe you must be familiar with this idiom, which is sort of java's excuse for closures
//In the "Resource Manager" class
public void process(Command cmd){
//Initialize
Ex …
0
votes
4answers
33 views
Should an object searcher method be in the a parent object, or the same as the object beign searched?
Which constitutes better object oriented design?
Class User {
id {get;set}
}
Class Office {
id {get;set}
List<User> Managers(){ }//search for users, return li …
3
votes
9answers
252 views
Decoupling vs YAGNI
Do they contradict?
Decoupling is something great and quite hard to achieve. However in most of the applications we don't really need it, so I can design highly coupled applicatio …
1
vote
7answers
283 views
How to refactor tightly coupled classes?
I'm trying to refactor a big tightly coupled application and trying to make it more maintainable and flexible.
I've got many unit tests, so I'm hoping to refactor step by step.
W …
0
votes
4answers
179 views
DLL mess in .NET, how to split one solution to multiple DLLs?
I've got a big VS.NET project with 5-6 projects and one of these projects is the Core DLL.
Now to add some plugin support I extracted an interface, however interface was required …
3
votes
8answers
142 views
Class design
I have 2 classes for the game i am making,
gui class and the logic class, for a game of noughts and crosses. The GUI class has a method that uses an array of JButtons and returns …
0
votes
0answers
117 views
What is the worst case of pathologically awful coupling between code modules that you’ve encountered? [closed]
What is the worst case of pathologically awful coupling between code modules that you've encountered?
My bid - from this morning's build failures in my (private) build of the prod …
4
votes
8answers
497 views
How to solve the violations of the Law of Demeter?
Me and a colleague designed a system for our customer, and in our opinion we created a nice clean design. But I'm having problems with some coupling we've introduced. I could try t …
