Curation by apogorzelska 7 hours ago for query single responsibility principle
Original results
-
https://github.com/katerd/srp — found via Mwmbl
GitHub - katerd/srp: Single Responsibility Principle
Saved searches Use saved searches to filter your results more quickly You signed in with another tab or window. Reload to refresh your session.You signed…
-
http://bl.ocks.org/felipero/1084227 — found via Mwmbl
Bad Single Responsibility Principle Example · GitHub
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You swit…
-
http://programmers.stackexchange.com/a/232240 — found via Mwmbl
Single Responsibility Principle and higher levels of abstraction…
Two common phrasings for the Single Responsibility Principle (SRP) are "each module should be responsible for a single feature or functionality in a syst…
-
http://programmers.stackexchange.com/a/386811 — found via Mwmbl
c# - Single responsibility principle - importer - Software Engin…
2 Answers 2 Theoretically, both of these could change independently from each other. So theoretically it is a violation of SRP. Still I would probably no…
-
http://programmers.stackexchange.com/a/17102 — found via Mwmbl
design - Clarify the Single Responsibility Principle - Software …
The Single Responsibility Principle states that a class should do one and only one thing. Some cases are pretty clear cut. Others, though, are difficult …
-
http://programmers.stackexchange.com/a/348427 — found via Mwmbl
design - Single Responsibility Principle Violation? - Software E…
I believe UpdateGroupBilling should not be called inside the save method as it violates the single responsibility principle. But, he says that each time …
-
https://programmers.stackexchange.com/q/150760 — found via Mwmbl
c# - Single Responsibility Principle - How Can I Avoid Code Frag…
I'm working on a team where the team leader is a virulent advocate of SOLID development principles. However, he lacks a lot of experience in getting comp…
-
http://programmers.stackexchange.com/a/119259 — found via Mwmbl
design - Single Responsibility Principle Implementation - Softwa…
In my spare time, I've been designing a CMS in order to learn more about actual software design and architecture, etc. Going through the SOLID principles,…
-
http://programmers.stackexchange.com/a/198523 — found via Mwmbl
design - Single Responsibility principle VS KISS principle - Sof…
Third, a one-to-one but with a redundancy of the common fields (being as focused on authentication as a visible user information on the website): User(us…
-
http://programmers.stackexchange.com/a/447095 — found via Mwmbl
design - Single responsibility principle - Classes with operator…
In this example the class Product holds all the variables related to a Product it doesn't allow to do any operations on them. Inventory instead is a clas…
-
http://programmers.stackexchange.com/q/259889 — found via Mwmbl
Application of Single Responsibility Principle on a Button - Sof…
I have a class that represents a button on the screen. This class has two methods: one for click event; the other for long-click event. Both events do di…
-
http://programmers.stackexchange.com/a/318319 — found via Mwmbl
java - Enums and single responsibility principle (SRP) - Softwar…
I have been experimenting lately with enums, and I found out that in Java they can do much more than simply representing a fixed set of constants. Now, I…
-
http://programmers.stackexchange.com/a/247228 — found via Mwmbl
Databases and the single responsibility principle - Software Eng…
I would say, there is nothing inherently wrong with both approaches; it depends on the architecture and other constraints. Sometimes it makes sense to us…
-
http://programmers.stackexchange.com/a/305126 — found via Mwmbl
object oriented - Single Responsibility Principle : Proxy Patter…
However, in cases where the tests did not force the separation, and the smells of Rigidity and Fragility become strong, the design should be refactored u…
-
http://programmers.stackexchange.com/a/261593 — found via Mwmbl
c# - How do you apply Single Responsibility principle to a repos…
I am trying to apply "SOLID" whenever I can and try to use common sense and avoid a pattern when I see that a pattern is creating more problems than it's…
-
http://programmers.stackexchange.com/a/122693 — found via Mwmbl
programming languages - Single responsibility principle - am I o…
I have a test scenario where in one module of application is responsible for creating ledger entries. There are three basic tasks which could be carried …
-
http://programmers.stackexchange.com/a/390209 — found via Mwmbl
Problem understanding the Single Responsibility Principle - Soft…
The SRP seens fairly reasonable when you first look at it. Every class should have one reason to change. Every class should take care of one thing. Right…
-
http://programmers.stackexchange.com/a/157238 — found via Mwmbl
c# - How do you follow the single responsibility principle in cl…
I have many classes in my application responsible for behaviour- views, controllers, models, network- often the state of one class or system depends on a…
-
http://programmers.stackexchange.com/a/122407 — found via Mwmbl
design - Struggling with the Single Responsibility Principle - S…
I have a website. It allows users to make posts (can be anything) and add tags that describe the post. In the code, I have two classes that represent the…
-
https://programmers.stackexchange.com/a/400107 — found via Mwmbl
java - Does it violate the Single Responsibility Principle if an…
1) ^What Euphoric said, and 2) there can be valid reasons to choose to structure your program or parts of it in a way that's different from the usual OOP…
-
http://programmers.stackexchange.com/posts/122460/revisions — found via Mwmbl
Revisions to Single responsibility principle - am I overusing it…
You only need one class, and the single responsibility of that class is to manage ledgers. That's an instinctual approach and it's probably correct, as w…
-
http://programmers.stackexchange.com/posts/387975/revisions — found via Mwmbl
Revisions to Confusion on Single Responsibility Principle (SRP) …
SRP actually stands for Single Responsibility Principle . Mr. Martin is correct that the Modem interface violates SRP. You are correct that ModemImpl viol…
-
https://programmers.stackexchange.com/posts/450737/revisions — found via Mwmbl
Revisions to What exactly is the single responsibility principle…
The Single Responsibility Principle is confusingly named and vaguely defined. Robert Martin who first named the principle has revised and clarified its m…
-
http://programmers.stackexchange.com/posts/261592/revisions — found via Mwmbl
Revisions to How do you apply Single Responsibility principle to…
How do you apply Single Responsability Responsibility principle to a repository I am trying to apply "SOLID" whenever I can and try to use common sense an…
-
https://programmers.stackexchange.com/posts/17170/revisions — found via Mwmbl
Revisions to Clarify the Single Responsibility Principle - Softw…
It's subtly different from the traditional "should do only one thing" definition, and I like this because it forces you to change the way you think about…
-
http://programmers.stackexchange.com/q/308322 — found via Mwmbl
single responsibility - When decoupling methods is not a good id…
It's a discussion about follow very strictly the SRP (Single Responsability Principle) vs. be more flexible when you write simple codes, like setting or …
-
http://programmers.stackexchange.com/q/401797 — found via Mwmbl
single responsibility - Is there a conflict between YAGNI and SR…
I my job, I am tasked with the responsibility of improving the code quality. To meet this responsibility I often pair program with developers and conduct …
-
http://programmers.stackexchange.com/q/350796 — found via Mwmbl
single responsibility - Dedicated method vs method with paramete…
5 Answers 5 Sometimes, the fact that you have this choice to make is itself a smell. It tells you that perhaps you are missing an abstraction, or that be…
-
http://programmers.stackexchange.com/a/358807 — found via Mwmbl
single responsibility - Encapsulation and SRP - Software Enginee…
In keeping with the SRP , my Book and Author classes shouldn't be aware of the database backend, or any elements used to display(ex. textbox , or Jtable )…
-
http://programmers.stackexchange.com/q/429329 — found via Mwmbl
single responsibility - Guidelines for using extensions in Swift…
The other day, I came across this question on StackOverflow. In short, the user who asked the question wanted to extend a class from a third-party librar…
-
http://programmers.stackexchange.com/q/433964 — found via Mwmbl
single responsibility - Clean code: Register listeners inside cl…
I'm writing a Java program with a custom event manager, which is of course the observer pattern. Should the calls to add event listeners/handlers be in t…
-
http://programmers.stackexchange.com/a/387780 — found via Mwmbl
single responsibility - Should I comply with SRP when designing …
My question is about that DateEntered column: is it Ok to have it in Units table or not? I mean does not this tell us somehow that an instance (row) of t…
-
http://programmers.stackexchange.com/a/277381 — found via Mwmbl
single responsibility - Peculiar architecture interfacing .NET t…
I have written a set of classes to interact with AutoCAD from an out-of-process .NET assembly, but it seems like my class architecture and interactions ar…
-
https://stackoverflow.com/q/1724469 — found via Mwmbl
Difference between Single Responsibility Principle and Separatio…
Same in principle but SoC alone doesn't appear to discourage over-separation. Overseparation isn't as bad as overcoupling, but it's bad, because it raise…
-
https://stackoverflow.com/questions/tagged/srp — found via Mwmbl
Newest 'single-responsibility-principle' Questions - Stack Overf…
Questions tagged [single-responsibility-principle] For questions about the Single Responsibility Principle in object-oriented programming, one of the SOL…
-
https://stackoverflow.com/q/11215141 — found via Mwmbl
oop - Is "high cohesion" a synonym for the "Single Responsibilit…
Single Responsibility Principle Most people defining SRP are incorrect. SRP is typically mis-explained as: "The Employee class shouldn't UpdateDemographi…
-
https://realm.io/news/donn-felker-solid-part-1/ — found via Mwmbl
S is for Single Responsibility Principle
S is for Single Responsibility Principle SOLID is a mnemonic acronym that helps define the five basic object-oriented design principles: Single Responsib…
New results
-
https://architectural-patterns.net/single-responsibility-principle — found via User
Single Responsibility Principle | Architectural Patterns
Single Responsibility Principle A class should have only one reason to change, meaning that a class should only have one responsibility or job. Single Res…
-
https://github.com/katerd/srp — found via Mwmbl
GitHub - katerd/srp: Single Responsibility Principle
Saved searches Use saved searches to filter your results more quickly You signed in with another tab or window. Reload to refresh your session.You signed…
-
http://bl.ocks.org/felipero/1084227 — found via Mwmbl
Bad Single Responsibility Principle Example · GitHub
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You swit…
-
http://programmers.stackexchange.com/a/232240 — found via Mwmbl
Single Responsibility Principle and higher levels of abstraction…
Two common phrasings for the Single Responsibility Principle (SRP) are "each module should be responsible for a single feature or functionality in a syst…
-
http://programmers.stackexchange.com/a/386811 — found via Mwmbl
c# - Single responsibility principle - importer - Software Engin…
2 Answers 2 Theoretically, both of these could change independently from each other. So theoretically it is a violation of SRP. Still I would probably no…
-
http://programmers.stackexchange.com/a/17102 — found via Mwmbl
design - Clarify the Single Responsibility Principle - Software …
The Single Responsibility Principle states that a class should do one and only one thing. Some cases are pretty clear cut. Others, though, are difficult …
-
http://programmers.stackexchange.com/a/348427 — found via Mwmbl
design - Single Responsibility Principle Violation? - Software E…
I believe UpdateGroupBilling should not be called inside the save method as it violates the single responsibility principle. But, he says that each time …
-
https://programmers.stackexchange.com/q/150760 — found via Mwmbl
c# - Single Responsibility Principle - How Can I Avoid Code Frag…
I'm working on a team where the team leader is a virulent advocate of SOLID development principles. However, he lacks a lot of experience in getting comp…
-
http://programmers.stackexchange.com/a/119259 — found via Mwmbl
design - Single Responsibility Principle Implementation - Softwa…
In my spare time, I've been designing a CMS in order to learn more about actual software design and architecture, etc. Going through the SOLID principles,…
-
http://programmers.stackexchange.com/a/198523 — found via Mwmbl
design - Single Responsibility principle VS KISS principle - Sof…
Third, a one-to-one but with a redundancy of the common fields (being as focused on authentication as a visible user information on the website): User(us…
-
http://programmers.stackexchange.com/a/447095 — found via Mwmbl
design - Single responsibility principle - Classes with operator…
In this example the class Product holds all the variables related to a Product it doesn't allow to do any operations on them. Inventory instead is a clas…
-
http://programmers.stackexchange.com/q/259889 — found via Mwmbl
Application of Single Responsibility Principle on a Button - Sof…
I have a class that represents a button on the screen. This class has two methods: one for click event; the other for long-click event. Both events do di…
-
http://programmers.stackexchange.com/a/318319 — found via Mwmbl
java - Enums and single responsibility principle (SRP) - Softwar…
I have been experimenting lately with enums, and I found out that in Java they can do much more than simply representing a fixed set of constants. Now, I…
-
http://programmers.stackexchange.com/a/247228 — found via Mwmbl
Databases and the single responsibility principle - Software Eng…
I would say, there is nothing inherently wrong with both approaches; it depends on the architecture and other constraints. Sometimes it makes sense to us…
-
http://programmers.stackexchange.com/a/305126 — found via Mwmbl
object oriented - Single Responsibility Principle : Proxy Patter…
However, in cases where the tests did not force the separation, and the smells of Rigidity and Fragility become strong, the design should be refactored u…
-
http://programmers.stackexchange.com/a/261593 — found via Mwmbl
c# - How do you apply Single Responsibility principle to a repos…
I am trying to apply "SOLID" whenever I can and try to use common sense and avoid a pattern when I see that a pattern is creating more problems than it's…
-
http://programmers.stackexchange.com/a/122693 — found via Mwmbl
programming languages - Single responsibility principle - am I o…
I have a test scenario where in one module of application is responsible for creating ledger entries. There are three basic tasks which could be carried …
-
http://programmers.stackexchange.com/a/390209 — found via Mwmbl
Problem understanding the Single Responsibility Principle - Soft…
The SRP seens fairly reasonable when you first look at it. Every class should have one reason to change. Every class should take care of one thing. Right…
-
http://programmers.stackexchange.com/a/157238 — found via Mwmbl
c# - How do you follow the single responsibility principle in cl…
I have many classes in my application responsible for behaviour- views, controllers, models, network- often the state of one class or system depends on a…
-
http://programmers.stackexchange.com/a/122407 — found via Mwmbl
design - Struggling with the Single Responsibility Principle - S…
I have a website. It allows users to make posts (can be anything) and add tags that describe the post. In the code, I have two classes that represent the…
-
https://programmers.stackexchange.com/a/400107 — found via Mwmbl
java - Does it violate the Single Responsibility Principle if an…
1) ^What Euphoric said, and 2) there can be valid reasons to choose to structure your program or parts of it in a way that's different from the usual OOP…
-
http://programmers.stackexchange.com/posts/122460/revisions — found via Mwmbl
Revisions to Single responsibility principle - am I overusing it…
You only need one class, and the single responsibility of that class is to manage ledgers. That's an instinctual approach and it's probably correct, as w…
-
http://programmers.stackexchange.com/posts/387975/revisions — found via Mwmbl
Revisions to Confusion on Single Responsibility Principle (SRP) …
SRP actually stands for Single Responsibility Principle . Mr. Martin is correct that the Modem interface violates SRP. You are correct that ModemImpl viol…
-
https://programmers.stackexchange.com/posts/450737/revisions — found via Mwmbl
Revisions to What exactly is the single responsibility principle…
The Single Responsibility Principle is confusingly named and vaguely defined. Robert Martin who first named the principle has revised and clarified its m…
-
http://programmers.stackexchange.com/posts/261592/revisions — found via Mwmbl
Revisions to How do you apply Single Responsibility principle to…
How do you apply Single Responsability Responsibility principle to a repository I am trying to apply "SOLID" whenever I can and try to use common sense an…
-
https://programmers.stackexchange.com/posts/17170/revisions — found via Mwmbl
Revisions to Clarify the Single Responsibility Principle - Softw…
It's subtly different from the traditional "should do only one thing" definition, and I like this because it forces you to change the way you think about…
-
http://programmers.stackexchange.com/q/308322 — found via Mwmbl
single responsibility - When decoupling methods is not a good id…
It's a discussion about follow very strictly the SRP (Single Responsability Principle) vs. be more flexible when you write simple codes, like setting or …
-
http://programmers.stackexchange.com/q/401797 — found via Mwmbl
single responsibility - Is there a conflict between YAGNI and SR…
I my job, I am tasked with the responsibility of improving the code quality. To meet this responsibility I often pair program with developers and conduct …
-
http://programmers.stackexchange.com/q/350796 — found via Mwmbl
single responsibility - Dedicated method vs method with paramete…
5 Answers 5 Sometimes, the fact that you have this choice to make is itself a smell. It tells you that perhaps you are missing an abstraction, or that be…
-
http://programmers.stackexchange.com/a/358807 — found via Mwmbl
single responsibility - Encapsulation and SRP - Software Enginee…
In keeping with the SRP , my Book and Author classes shouldn't be aware of the database backend, or any elements used to display(ex. textbox , or Jtable )…
-
http://programmers.stackexchange.com/q/429329 — found via Mwmbl
single responsibility - Guidelines for using extensions in Swift…
The other day, I came across this question on StackOverflow. In short, the user who asked the question wanted to extend a class from a third-party librar…
-
http://programmers.stackexchange.com/q/433964 — found via Mwmbl
single responsibility - Clean code: Register listeners inside cl…
I'm writing a Java program with a custom event manager, which is of course the observer pattern. Should the calls to add event listeners/handlers be in t…
-
http://programmers.stackexchange.com/a/387780 — found via Mwmbl
single responsibility - Should I comply with SRP when designing …
My question is about that DateEntered column: is it Ok to have it in Units table or not? I mean does not this tell us somehow that an instance (row) of t…
-
http://programmers.stackexchange.com/a/277381 — found via Mwmbl
single responsibility - Peculiar architecture interfacing .NET t…
I have written a set of classes to interact with AutoCAD from an out-of-process .NET assembly, but it seems like my class architecture and interactions ar…
-
https://stackoverflow.com/q/1724469 — found via Mwmbl
Difference between Single Responsibility Principle and Separatio…
Same in principle but SoC alone doesn't appear to discourage over-separation. Overseparation isn't as bad as overcoupling, but it's bad, because it raise…
-
https://stackoverflow.com/questions/tagged/srp — found via Mwmbl
Newest 'single-responsibility-principle' Questions - Stack Overf…
Questions tagged [single-responsibility-principle] For questions about the Single Responsibility Principle in object-oriented programming, one of the SOL…
-
https://stackoverflow.com/q/11215141 — found via Mwmbl
oop - Is "high cohesion" a synonym for the "Single Responsibilit…
Single Responsibility Principle Most people defining SRP are incorrect. SRP is typically mis-explained as: "The Employee class shouldn't UpdateDemographi…
-
https://realm.io/news/donn-felker-solid-part-1/ — found via Mwmbl
S is for Single Responsibility Principle
S is for Single Responsibility Principle SOLID is a mnemonic acronym that helps define the five basic object-oriented design principles: Single Responsib…