The coupling tag has no wiki summary.
-1
votes
0answers
12 views
task coupling in OS [closed]
let us consider a scenario where two tasks are running concurrently. there is a possibility that these two tasks might get coupled with each other.These two tasks might be coupled either tightly or ...
-6
votes
0answers
44 views
How to reduce coupling between classes in java? [closed]
Alright so I had an assignment to build a program that acted as a solver for small puzzles. I built the solver using an abstract class with generics and an interface. Each puzzle class has methods ...
1
vote
1answer
33 views
How to keep different views decoupled with MVVM
My application is designed to load up an XML file and display an error(s) (if any).
The problem I have is how to display both (the XML and Errors) on screen without coupling (my application does ...
1
vote
1answer
78 views
How to share data between Tasks/Threads without coupling them?
I am developing a rather complex microcontroller application in C, and I have some doubts about how to "link" my shared data between the different tasks/threads without coupling them.
Until now I ...
0
votes
2answers
102 views
What is the difference between afferent couplings and efferent couplings of a class?
Code quality metric tool like Sonar does provide the ability to drill down to a class and find out the number of:
Afferent (incoming) couplings
Efferent (outgoing) couplings
What are these two ...
0
votes
2answers
26 views
Share important instances without coupling
Let's say you're writing a "bigger" application and you want to log certain errors in your classes. Now almost every class needs access to a Logger.
One simple solution would be the following (PHP, ...
2
votes
2answers
64 views
Using interfaces over classes
I'm a bit confused about the advice to use the Interface for a Java class, like in this thread: Why should the interface for a Java class be prefered?
I understand why you would want to use the ...
0
votes
3answers
153 views
Difference between loose Coupling - Encapsulation
To my knoweldge so far I thought that coupling relates to the degree in which two or more classes are "interconnected". In other words in which extent a class makes use of methods or variables of ...
3
votes
4answers
149 views
Unit testing: how to test methods with a lot of underlying objects and business logic
I am really new to unit testing, and I can't figure out the proper way to do it for my case, though I spent crazy amount of time on research.
My code base is huge (~3 years of work), very coupled ...
0
votes
1answer
66 views
exceptions and coupling
I have this main-class that receives a queuemessage and then uses a few other classes to do some work. All these other classes use some lower classes themselves, and eventually data is written to a ...
0
votes
0answers
50 views
split component and communication
I have a main class (Main.java) who extends JFrame.
Main class containt a left panel who contain two panels.
The first one (Component) contain many TabelPanel and the second is named Property.
I ...
1
vote
3answers
104 views
Coupling: Use primitive types, interfaces or concrete objects as parameters?
First let me say that I'm not that experienced with OO patterns, practices, clean code etc.
I'm actually learning all these techniques.
The most loosely coupled way would be to use primitive types ...
0
votes
0answers
43 views
Reduce coupling between methods within the same class
I have one class CheapProductServices that implements interface IProductServices. In this class I call a WebService MyWebService to obtain some data. The client is instantiated within the ...
0
votes
0answers
52 views
Grid 960 couples presentation to markup. Is this right?
<div class='width4'>
<p>Somebody invented flying car</p>
</div>
The class width4 simply makes this markup coupled to the presentation. What if I decide to make this div ...
2
votes
3answers
87 views
How can I get the benefits of implementation inheritance without tying my class to a particular implementation?
I'm developing an application which builds on a class written by another developer (for which I do not have the source).
I wish to use all of the functionality of said class but also to extend it ...
1
vote
1answer
85 views
Where to put ajax scripts for forms (what controller) in mvc?
This is my situation:
I have a single view (lets call it view V) with a formform with multiple combo box for selecting some parameters.
I want to load the options of those combo box via AJAX calls ...
0
votes
1answer
39 views
Should/does loose coupling also be applied between methods of the same class?
Assume class A with methods M1 and M2 has low coupling with other classes
a) Should we also make sure that each individual method in class A is not tightly coupled with any other method in the same ...
0
votes
1answer
265 views
How does High Cohesion help us reduce Coupling?
Assume methods M1 and M2 have strongly related responsibilities
First example:
If
• M1 and M2 are defined within class A ( thus class A is highly cohesive )
• class B uses A.M1 and class C ...
0
votes
1answer
323 views
How to submit an R job on linux ?
I am a engineer newbie to R and have got a script which I have to run on linux, I searched alot but was not able to find a simple command to run the script on linux. I have to couple my engineering ...
2
votes
3answers
267 views
Which pattern has lower coupling in java: passing objects to a method or using composition?
//Ex1: (passing by object)
class A {
}
class B {
void foo(A a) {
<do something with a>
}
}
//Ex2: (composition)
class C {
A a
void foo(){
<do something with a>
...
1
vote
3answers
613 views
Reducing coupling simple example needed for beginner
Just out of college and am coming across some code where I need to reduce coupling. But I don’t understand fully all the concepts and would like a simple example to help me. To get you started I have ...
2
votes
1answer
390 views
struts action class and business service layer
I have a question in handling the "business validation" done on the service layer. The code belows shows a typical account fund transfer example, which validates for sufficient fund, transfer amount ...
1
vote
1answer
115 views
Event handling mechanism between ManagedBeans in JSF2?
Is there a way to decouple ManagedBeans from each other in a way that it is possible to send and receive custom events - probably over the (cool) FacesContext?! I do not want to inject Beans as ...
-1
votes
2answers
802 views
How does a Java interface reduce coupling? [closed]
How does it reduce coupling or enable loose coupling? What's the difference between the two? Also, how do interfaces help in testing?
0
votes
1answer
152 views
Subclass Coupling and an example in .NET
I have just been reading an article that says :
"Subclass coupling. When a base type (usually class) has a number of derived types that extend it, other types should ideally only know about the ...
0
votes
2answers
131 views
How to access EF class properties from Service Layer
I have an ASP.NET MVC3 in C# and Razor. The architecture of the application is divided in Data Access Layer (EF classes + Repository), Service Layer, Controller, ViewModels and View.
From my Service ...
0
votes
2answers
550 views
In a ASP.NET MVC3 application, the ViewModel is filled by Service Layer or by the Controller?
I have an ASP.NET MVC3 in C# and Razor. The architecture of the application is divided in Data Access Layer (EF classes + Repository), Service Layer, Controller, ViewModels and View.
My ViewModel ...
1
vote
2answers
432 views
In ASP.NET MVC3 how to get data beloning to related DB tables without create coupling between components?
I have an ASP.NET MVC3 in C# and Razor. The architecture of the application is divided in Data Access Layer (EF classes + Repository), Service Layer, Controller, ViewModels and View.
I have two EF ...
3
votes
5answers
813 views
MATLAB and the use of global variables?
I am writing a tool for dicom images and spectroscopy and there is a lot of shared data I want to use between the functions I am making. I have GUI that I made and the different sliders and buttons ...
2
votes
3answers
750 views
Integrating Bundles (Related Doctrine 2 Entities) in Symfony 2 and Coupling
As I understand, Bundles is to separate functionality. Suppose I have a UserBundle & a BlogBundle. Then my BlogBundle:Post will have an author field that references UserBundle:User. Doesn't that ...
1
vote
1answer
200 views
Tools for measuting coupling and cohesion [closed]
Do you know of any tools that help us measure coupling and cohesion in the system?
1
vote
3answers
102 views
Public static data used throughout program
Code examples are C# but this is a general OO question.
I know according to OO rules, class coupling should be minimised and members should be kept private wherever possible, etc.
Consider this ...
1
vote
2answers
131 views
Benefits of not passing entities to view
I usually see people telling that you should not pass entities to your View. They say you should use a DTO/VO/ViewModel/AnyOtherThingYouWant instead, as using an entity would increase the coupling.
...
4
votes
3answers
73 views
Coupling between public functions
Lets say I have a function called do3()
In order for that function to work I need the functions do1() and do2() be executed.
However, do1() and do2() could also be needed for other stuff (maybe for ...
2
votes
2answers
37 views
When is it OK to blur the abstraction between data and logic?
I mean referring to specific database rows by their ID, from code, or specifying a class name in the database. Example:
You have a database table called SocialNetwork. It's a lookup table. The ...
1
vote
1answer
634 views
Cohesion VS. Coupling
This question will treat software like a tree, where:
Each node in the tree represents some code unit (eg class \ method \ line etc.)
Node X is son of Node Y if in the source code X is set in Y
...
6
votes
1answer
150 views
Best option for managing module classes
My game base consists of a series of modules, organized as classes, that are created, updated and interact when needed.
A few examples could be: CWindowManager, CGraphicsManager, CPhysicsManager, and ...
0
votes
2answers
26 views
Is “coupling” related only to code, or can the term be applied to software components and architecture?
For example, when discussing a build or deploy process, and making sure it is independent of the IDE. Is this "coupling", or is that considered Separation of Concerns, or something completely ...
2
votes
1answer
119 views
Keeping Coupling Low While Adhering to DRY
The mantra "Keep high cohesion and low coupling" (or some variant) is frequently tossed around. However, I find that it frequently conflicts with "Don't repeat yourself."
For example, I think we can ...
1
vote
3answers
95 views
Optional component functionality vs SRP
I have a design issue that I encounter currently.
Let's say there is a hierarchy of components. Each of these component derives from an abstract Component type which looks something like this:
...
5
votes
3answers
304 views
0
votes
1answer
112 views
Coupling of objects
Assuming I have methods of doA(), doB() and doC() of classes A,B and C respectively.
Than unless I am wrong, doA() method should belong to class A. It must be executed from Class A. If a method ...
0
votes
2answers
429 views
coupling - C++ web or GUI desktop apps
How to handle coupling in advanced C++ applications?
Can we use finished code for web application, written (for e.g.) with Witty, and make console application with it? ...or change it to desktop ...
3
votes
2answers
703 views
How to reduce coupling when one class calls only one method on another class that has many methods?
I have a class (let's call it MyService) that accepts two dependencies in it's constructor. The first one is not all that relevant to the question. The second one is PaymentDetails. PaymentDetails ...
1
vote
3answers
3k views
Java 1.4: Cast primitive type to Object (Coupling vs Performance?)
This is actually related to a question I asked earlier, but I was left hanging on this detail. I'm restricted to Java 1.4 and I want to cast an int type to Object. Do I really need to use an Integer ...
7
votes
1answer
310 views
Is “too many dependencies” a code smell?
As a general rule, I like to use constructor-based dependency injection, but recently I was working on a class that depended on 4 other classes. Because long argument lists are hard to read, I ...
3
votes
1answer
554 views
Low coupling and tight cohesion
Of course it depends on the situation. But when a lower lever object or system communicate with an higher level system, should callbacks or events be preferred to keeping a pointer to higher level ...
2
votes
5answers
388 views
ORM - specific to SQL Server 2008+ for .NET
Is there an ORM tied to MS SQL 2008+, generating .NET code, which takes advantage of MS SQL specific features?
I'm specifically interested in 2 features:
(1) fetching a group of records by their ...
1
vote
2answers
121 views
Flash / ActionScript - application design question
Could someone share the way how this should be designed:
Let's say I have some data model, which is built using Entries.
Basically, I have one abstract class Entry (or interface IEntry - that's not ...
0
votes
2answers
844 views
Coupling/Cohesion
Whilst there are many good examples on this forum that contain examples of coupling and cohesion, I am struggling to apply it to my code fully. I can identify parts in my code that may need changing. ...

